react-markdown-table-ts 1.4.11 → 1.4.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@
2
2
  * @fileoverview Component for displaying line numbers in a
3
3
  * styled pre/code block.
4
4
  */
5
+ import type { CSSProperties } from 'react';
5
6
  import React from 'react';
6
7
  /**
7
8
  * Line numbers component props with style support
@@ -11,842 +12,13 @@ export interface LineNumbersComponentProps {
11
12
  showLineNumbers?: boolean;
12
13
  startLine?: number;
13
14
  className?: string;
14
- style?: React.CSSProperties;
15
+ style?: CSSProperties;
15
16
  topPadding?: number;
17
+ codeStyle?: CSSProperties;
16
18
  }
17
19
  /**
18
20
  * Main component that displays line numbers.
19
21
  * Creates a styled pre/code block with line numbers on the left side.
20
22
  */
21
- export declare function LineNumbers(props: LineNumbersComponentProps): React.DetailedReactHTMLElement<{
22
- className: string;
23
- 'data-start': number;
24
- style: {
25
- accentColor?: import("csstype").Property.AccentColor | undefined;
26
- alignContent?: import("csstype").Property.AlignContent | undefined;
27
- alignItems?: import("csstype").Property.AlignItems | undefined;
28
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
29
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
30
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
31
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
32
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
33
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
34
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
35
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
36
- animationName?: import("csstype").Property.AnimationName | undefined;
37
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
38
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
39
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
40
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
41
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
42
- appearance?: import("csstype").Property.Appearance | undefined;
43
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
44
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
45
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
46
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
47
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
48
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
49
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
50
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
51
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
52
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
53
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
54
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
55
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
56
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
57
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
58
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
59
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
60
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
61
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
62
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
63
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
64
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
65
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
66
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
67
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
68
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
69
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
70
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
71
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
72
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
73
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
74
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
75
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
76
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
77
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
78
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
79
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
80
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
81
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
82
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
83
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
84
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
85
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
86
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
87
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
88
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
89
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
90
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
91
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
92
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
93
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
94
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
95
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
96
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
97
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
98
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
99
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
100
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
101
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
102
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
103
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
104
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
105
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
106
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
107
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
108
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
109
- breakInside?: import("csstype").Property.BreakInside | undefined;
110
- captionSide?: import("csstype").Property.CaptionSide | undefined;
111
- caretColor?: import("csstype").Property.CaretColor | undefined;
112
- caretShape?: import("csstype").Property.CaretShape | undefined;
113
- clear?: import("csstype").Property.Clear | undefined;
114
- clipPath?: import("csstype").Property.ClipPath | undefined;
115
- color?: import("csstype").Property.Color | undefined;
116
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
117
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
118
- columnCount?: import("csstype").Property.ColumnCount | undefined;
119
- columnFill?: import("csstype").Property.ColumnFill | undefined;
120
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
121
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
122
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
123
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
124
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
125
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
126
- contain?: import("csstype").Property.Contain | undefined;
127
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
128
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
129
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
130
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
131
- containerName?: import("csstype").Property.ContainerName | undefined;
132
- containerType?: import("csstype").Property.ContainerType | undefined;
133
- content?: import("csstype").Property.Content | undefined;
134
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
135
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
136
- counterReset: import("csstype").Property.CounterReset;
137
- counterSet?: import("csstype").Property.CounterSet | undefined;
138
- cursor?: import("csstype").Property.Cursor | undefined;
139
- direction?: import("csstype").Property.Direction | undefined;
140
- display?: import("csstype").Property.Display | undefined;
141
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
142
- filter?: import("csstype").Property.Filter | undefined;
143
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
144
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
145
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
146
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
147
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
148
- float?: import("csstype").Property.Float | undefined;
149
- fontFamily?: import("csstype").Property.FontFamily | undefined;
150
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
151
- fontKerning?: import("csstype").Property.FontKerning | undefined;
152
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
153
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
154
- fontPalette?: import("csstype").Property.FontPalette | undefined;
155
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
156
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
157
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
158
- fontStretch?: import("csstype").Property.FontStretch | undefined;
159
- fontStyle?: import("csstype").Property.FontStyle | undefined;
160
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
161
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
162
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
163
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
164
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
165
- fontVariant?: import("csstype").Property.FontVariant | undefined;
166
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
167
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
168
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
169
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
170
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
171
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
172
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
173
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
174
- fontWeight?: import("csstype").Property.FontWeight | undefined;
175
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
176
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
177
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
178
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
179
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
180
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
181
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
182
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
183
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
184
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
185
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
186
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
187
- height?: import("csstype").Property.Height<string | number> | undefined;
188
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
189
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
190
- hyphens?: import("csstype").Property.Hyphens | undefined;
191
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
192
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
193
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
194
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
195
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
196
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
197
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
198
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
199
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
200
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
201
- isolation?: import("csstype").Property.Isolation | undefined;
202
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
203
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
204
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
205
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
206
- left?: import("csstype").Property.Left<string | number> | undefined;
207
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
208
- lineBreak?: import("csstype").Property.LineBreak | undefined;
209
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
210
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
211
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
212
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
213
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
214
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
215
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
216
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
217
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
218
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
219
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
220
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
221
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
222
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
223
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
224
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
225
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
226
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
227
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
228
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
229
- maskClip?: import("csstype").Property.MaskClip | undefined;
230
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
231
- maskImage?: import("csstype").Property.MaskImage | undefined;
232
- maskMode?: import("csstype").Property.MaskMode | undefined;
233
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
234
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
235
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
236
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
237
- maskType?: import("csstype").Property.MaskType | undefined;
238
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
239
- mathDepth?: import("csstype").Property.MathDepth | undefined;
240
- mathShift?: import("csstype").Property.MathShift | undefined;
241
- mathStyle?: import("csstype").Property.MathStyle | undefined;
242
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
243
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
244
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
245
- maxLines?: import("csstype").Property.MaxLines | undefined;
246
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
247
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
248
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
249
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
250
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
251
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
252
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
253
- motionPath?: import("csstype").Property.OffsetPath | undefined;
254
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
255
- objectFit?: import("csstype").Property.ObjectFit | undefined;
256
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
257
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
258
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
259
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
260
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
261
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
262
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
263
- opacity?: import("csstype").Property.Opacity | undefined;
264
- order?: import("csstype").Property.Order | undefined;
265
- orphans?: import("csstype").Property.Orphans | undefined;
266
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
267
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
268
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
269
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
270
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
271
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
272
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
273
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
274
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
275
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
276
- overflowX?: import("csstype").Property.OverflowX | undefined;
277
- overflowY?: import("csstype").Property.OverflowY | undefined;
278
- overlay?: import("csstype").Property.Overlay | undefined;
279
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
280
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
281
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
282
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
283
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
284
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
285
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
286
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
287
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
288
- paddingLeft?: string | number | undefined;
289
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
290
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
291
- page?: import("csstype").Property.Page | undefined;
292
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
293
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
294
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
295
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
296
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
297
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
298
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
299
- position: import("csstype").Property.Position;
300
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
301
- quotes?: import("csstype").Property.Quotes | undefined;
302
- resize?: import("csstype").Property.Resize | undefined;
303
- right?: import("csstype").Property.Right<string | number> | undefined;
304
- rotate?: import("csstype").Property.Rotate | undefined;
305
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
306
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
307
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
308
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
309
- scale?: import("csstype").Property.Scale | undefined;
310
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
311
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
312
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
313
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
314
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
315
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
316
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
317
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
318
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
319
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
320
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
321
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
322
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
323
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
324
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
325
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
326
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
327
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
328
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
329
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
330
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
331
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
332
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
333
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
334
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
335
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
336
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
337
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
338
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
339
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
340
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
341
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
342
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
343
- tableLayout?: import("csstype").Property.TableLayout | undefined;
344
- textAlign?: import("csstype").Property.TextAlign | undefined;
345
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
346
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
347
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
348
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
349
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
350
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
351
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
352
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
353
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
354
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
355
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
356
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
357
- textJustify?: import("csstype").Property.TextJustify | undefined;
358
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
359
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
360
- textRendering?: import("csstype").Property.TextRendering | undefined;
361
- textShadow?: import("csstype").Property.TextShadow | undefined;
362
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
363
- textTransform?: import("csstype").Property.TextTransform | undefined;
364
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
365
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
366
- textWrap?: import("csstype").Property.TextWrap | undefined;
367
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
368
- top?: import("csstype").Property.Top<string | number> | undefined;
369
- touchAction?: import("csstype").Property.TouchAction | undefined;
370
- transform?: import("csstype").Property.Transform | undefined;
371
- transformBox?: import("csstype").Property.TransformBox | undefined;
372
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
373
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
374
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
375
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
376
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
377
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
378
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
379
- translate?: import("csstype").Property.Translate<string | number> | undefined;
380
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
381
- userSelect?: import("csstype").Property.UserSelect | undefined;
382
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
383
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
384
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
385
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
386
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
387
- visibility?: import("csstype").Property.Visibility | undefined;
388
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
389
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
390
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
391
- widows?: import("csstype").Property.Widows | undefined;
392
- width?: import("csstype").Property.Width<string | number> | undefined;
393
- willChange?: import("csstype").Property.WillChange | undefined;
394
- wordBreak?: import("csstype").Property.WordBreak | undefined;
395
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
396
- wordWrap?: import("csstype").Property.WordWrap | undefined;
397
- writingMode?: import("csstype").Property.WritingMode | undefined;
398
- zIndex?: import("csstype").Property.ZIndex | undefined;
399
- zoom?: import("csstype").Property.Zoom | undefined;
400
- all?: import("csstype").Property.All | undefined;
401
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
402
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
403
- background?: import("csstype").Property.Background<string | number> | undefined;
404
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
405
- border?: import("csstype").Property.Border<string | number> | undefined;
406
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
407
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
408
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
409
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
410
- borderColor?: import("csstype").Property.BorderColor | undefined;
411
- borderImage?: import("csstype").Property.BorderImage | undefined;
412
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
413
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
414
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
415
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
416
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
417
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
418
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
419
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
420
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
421
- caret?: import("csstype").Property.Caret | undefined;
422
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
423
- columns?: import("csstype").Property.Columns<string | number> | undefined;
424
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
425
- container?: import("csstype").Property.Container | undefined;
426
- flex?: import("csstype").Property.Flex<string | number> | undefined;
427
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
428
- font?: import("csstype").Property.Font | undefined;
429
- gap?: import("csstype").Property.Gap<string | number> | undefined;
430
- grid?: import("csstype").Property.Grid | undefined;
431
- gridArea?: import("csstype").Property.GridArea | undefined;
432
- gridColumn?: import("csstype").Property.GridColumn | undefined;
433
- gridRow?: import("csstype").Property.GridRow | undefined;
434
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
435
- inset?: import("csstype").Property.Inset<string | number> | undefined;
436
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
437
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
438
- lineClamp?: import("csstype").Property.LineClamp | undefined;
439
- listStyle?: import("csstype").Property.ListStyle | undefined;
440
- margin?: import("csstype").Property.Margin<string | number> | undefined;
441
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
442
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
443
- mask?: import("csstype").Property.Mask<string | number> | undefined;
444
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
445
- motion?: import("csstype").Property.Offset<string | number> | undefined;
446
- offset?: import("csstype").Property.Offset<string | number> | undefined;
447
- outline?: import("csstype").Property.Outline<string | number> | undefined;
448
- overflow?: import("csstype").Property.Overflow | undefined;
449
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
450
- padding?: import("csstype").Property.Padding<string | number> | undefined;
451
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
452
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
453
- placeContent?: import("csstype").Property.PlaceContent | undefined;
454
- placeItems?: import("csstype").Property.PlaceItems | undefined;
455
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
456
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
457
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
458
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
459
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
460
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
461
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
462
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
463
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
464
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
465
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
466
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
467
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
468
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
469
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
470
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
471
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
472
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
473
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
474
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
475
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
476
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
477
- MozBinding?: import("csstype").Property.MozBinding | undefined;
478
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
479
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
480
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
481
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
482
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
483
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
484
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
485
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
486
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
487
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
488
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
489
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
490
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
491
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
492
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
493
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
494
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
495
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
496
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
497
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
498
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
499
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
500
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
501
- MozOrient?: import("csstype").Property.MozOrient | undefined;
502
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
503
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
504
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
505
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
506
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
507
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
508
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
509
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
510
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
511
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
512
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
513
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
514
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
515
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
516
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
517
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
518
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
519
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
520
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
521
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
522
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
523
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
524
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
525
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
526
- msFilter?: import("csstype").Property.MsFilter | undefined;
527
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
528
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
529
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
530
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
531
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
532
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
533
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
534
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
535
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
536
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
537
- msHyphens?: import("csstype").Property.Hyphens | undefined;
538
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
539
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
540
- msOrder?: import("csstype").Property.Order | undefined;
541
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
542
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
543
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
544
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
545
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
546
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
547
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
548
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
549
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
550
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
551
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
552
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
553
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
554
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
555
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
556
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
557
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
558
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
559
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
560
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
561
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
562
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
563
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
564
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
565
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
566
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
567
- msTransform?: import("csstype").Property.Transform | undefined;
568
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
569
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
570
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
571
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
572
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
573
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
574
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
575
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
576
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
577
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
578
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
579
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
580
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
581
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
582
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
583
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
584
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
585
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
586
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
587
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
588
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
589
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
590
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
591
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
592
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
593
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
594
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
595
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
596
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
597
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
598
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
599
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
600
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
601
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
602
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
603
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
604
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
605
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
606
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
607
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
608
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
609
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
610
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
611
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
612
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
613
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
614
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
615
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
616
- WebkitFilter?: import("csstype").Property.Filter | undefined;
617
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
618
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
619
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
620
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
621
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
622
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
623
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
624
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
625
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
626
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
627
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
628
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
629
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
630
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
631
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
632
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
633
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
634
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
635
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
636
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
637
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
638
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
639
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
640
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
641
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
642
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
643
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
644
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
645
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
646
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
647
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
648
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
649
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
650
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
651
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
652
- WebkitOrder?: import("csstype").Property.Order | undefined;
653
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
654
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
655
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
656
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
657
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
658
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
659
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
660
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
661
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
662
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
663
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
664
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
665
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
666
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
667
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
668
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
669
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
670
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
671
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
672
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
673
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
674
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
675
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
676
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
677
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
678
- WebkitTransform?: import("csstype").Property.Transform | undefined;
679
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
680
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
681
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
682
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
683
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
684
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
685
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
686
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
687
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
688
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
689
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
690
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
691
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
692
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
693
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
694
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
695
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
696
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
697
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
698
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
699
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
700
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
701
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
702
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
703
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
704
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
705
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
706
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
707
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
708
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
709
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
710
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
711
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
712
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
713
- azimuth?: import("csstype").Property.Azimuth | undefined;
714
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
715
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
716
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
717
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
718
- boxLines?: import("csstype").Property.BoxLines | undefined;
719
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
720
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
721
- boxPack?: import("csstype").Property.BoxPack | undefined;
722
- clip?: import("csstype").Property.Clip | undefined;
723
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
724
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
725
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
726
- imeMode?: import("csstype").Property.ImeMode | undefined;
727
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
728
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
729
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
730
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
731
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
732
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
733
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
734
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
735
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
736
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
737
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
738
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
739
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
740
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
741
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
742
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
743
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
744
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
745
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
746
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
747
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
748
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
749
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
750
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
751
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
752
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
753
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
754
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
755
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
756
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
757
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
758
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
759
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
760
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
761
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
762
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
763
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
764
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
765
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
766
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
767
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
768
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
769
- MozOpacity?: import("csstype").Property.Opacity | undefined;
770
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
771
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
772
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
773
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
774
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
775
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
776
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
777
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
778
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
779
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
780
- MozTransform?: import("csstype").Property.Transform | undefined;
781
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
782
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
783
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
784
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
785
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
786
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
787
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
788
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
789
- msImeMode?: import("csstype").Property.ImeMode | undefined;
790
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
791
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
792
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
793
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
794
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
795
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
796
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
797
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
798
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
799
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
800
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
801
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
802
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
803
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
804
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
805
- OTransform?: import("csstype").Property.Transform | undefined;
806
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
807
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
808
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
809
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
810
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
811
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
812
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
813
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
814
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
815
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
816
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
817
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
818
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
819
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
820
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
821
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
822
- clipRule?: import("csstype").Property.ClipRule | undefined;
823
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
824
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
825
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
826
- fill?: import("csstype").Property.Fill | undefined;
827
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
828
- fillRule?: import("csstype").Property.FillRule | undefined;
829
- floodColor?: import("csstype").Property.FloodColor | undefined;
830
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
831
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
832
- lightingColor?: import("csstype").Property.LightingColor | undefined;
833
- marker?: import("csstype").Property.Marker | undefined;
834
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
835
- markerMid?: import("csstype").Property.MarkerMid | undefined;
836
- markerStart?: import("csstype").Property.MarkerStart | undefined;
837
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
838
- stopColor?: import("csstype").Property.StopColor | undefined;
839
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
840
- stroke?: import("csstype").Property.Stroke | undefined;
841
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
842
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
843
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
844
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
845
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
846
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
847
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
848
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
849
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
850
- };
851
- }, HTMLElement>;
23
+ export declare function LineNumbers({ children, showLineNumbers, startLine, className, style, topPadding, codeStyle }: LineNumbersComponentProps): import("react/jsx-runtime").JSX.Element;
852
24
  //# sourceMappingURL=LineNumbers.d.ts.map