tekivex-ui 2.0.2 → 2.2.0

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.
Files changed (102) hide show
  1. package/dist/index.cjs +12 -12
  2. package/dist/index.d.ts +7 -2
  3. package/dist/index.d.ts.map +1 -1
  4. package/dist/index.js +2839 -2538
  5. package/dist/src/components/TkxAppBar.d.ts +12 -0
  6. package/dist/src/components/TkxAppBar.d.ts.map +1 -0
  7. package/dist/src/components/TkxAutocomplete.d.ts +25 -0
  8. package/dist/src/components/TkxAutocomplete.d.ts.map +1 -0
  9. package/dist/src/components/TkxBottomNav.d.ts +15 -0
  10. package/dist/src/components/TkxBottomNav.d.ts.map +1 -0
  11. package/dist/src/components/TkxBreadcrumb.d.ts +17 -0
  12. package/dist/src/components/TkxBreadcrumb.d.ts.map +1 -0
  13. package/dist/src/components/TkxCard.d.ts.map +1 -1
  14. package/dist/src/components/TkxConfigProvider.d.ts +100 -0
  15. package/dist/src/components/TkxConfigProvider.d.ts.map +1 -0
  16. package/dist/src/components/TkxDataGrid.d.ts +33 -0
  17. package/dist/src/components/TkxDataGrid.d.ts.map +1 -0
  18. package/dist/src/components/TkxEmpty.d.ts +870 -0
  19. package/dist/src/components/TkxEmpty.d.ts.map +1 -0
  20. package/dist/src/components/TkxForm.d.ts +54 -0
  21. package/dist/src/components/TkxForm.d.ts.map +1 -0
  22. package/dist/src/components/TkxLayout.d.ts +87 -0
  23. package/dist/src/components/TkxLayout.d.ts.map +1 -0
  24. package/dist/src/components/TkxMasonry.d.ts +12 -0
  25. package/dist/src/components/TkxMasonry.d.ts.map +1 -0
  26. package/dist/src/components/TkxModal.d.ts.map +1 -1
  27. package/dist/src/components/TkxPopover.d.ts +15 -0
  28. package/dist/src/components/TkxPopover.d.ts.map +1 -0
  29. package/dist/src/components/TkxRichTextDisplay.d.ts +19 -0
  30. package/dist/src/components/TkxRichTextDisplay.d.ts.map +1 -0
  31. package/dist/src/components/TkxSelect.d.ts.map +1 -1
  32. package/dist/src/components/TkxSlider.d.ts.map +1 -1
  33. package/dist/src/components/TkxSnackbar.d.ts +16 -0
  34. package/dist/src/components/TkxSnackbar.d.ts.map +1 -0
  35. package/dist/src/components/TkxSpeedDial.d.ts +18 -0
  36. package/dist/src/components/TkxSpeedDial.d.ts.map +1 -0
  37. package/dist/src/components/TkxSpin.d.ts +15 -0
  38. package/dist/src/components/TkxSpin.d.ts.map +1 -0
  39. package/dist/src/components/TkxStatistic.d.ts +1746 -0
  40. package/dist/src/components/TkxStatistic.d.ts.map +1 -0
  41. package/dist/src/components/TkxToolbar.d.ts +22 -0
  42. package/dist/src/components/TkxToolbar.d.ts.map +1 -0
  43. package/dist/src/components/TkxTooltip.d.ts.map +1 -1
  44. package/dist/src/components/TkxTransferList.d.ts +20 -0
  45. package/dist/src/components/TkxTransferList.d.ts.map +1 -0
  46. package/dist/src/components/TkxTreeView.d.ts +23 -0
  47. package/dist/src/components/TkxTreeView.d.ts.map +1 -0
  48. package/dist/src/components/TkxTypography.d.ts +2614 -0
  49. package/dist/src/components/TkxTypography.d.ts.map +1 -0
  50. package/dist/src/components/index.d.ts +20 -0
  51. package/dist/src/components/index.d.ts.map +1 -1
  52. package/dist/src/i18n/I18nProvider.d.ts +10 -0
  53. package/dist/src/i18n/I18nProvider.d.ts.map +1 -0
  54. package/dist/src/i18n/index.d.ts +50 -0
  55. package/dist/src/i18n/index.d.ts.map +1 -0
  56. package/dist/src/themes/index.d.ts +108 -0
  57. package/dist/src/themes/index.d.ts.map +1 -1
  58. package/package.json +2 -2
  59. package/src/components/TkxAppBar.tsx +260 -0
  60. package/src/components/TkxAutocomplete.tsx +453 -0
  61. package/src/components/TkxBottomNav.tsx +239 -0
  62. package/src/components/TkxBreadcrumb.tsx +322 -0
  63. package/src/components/TkxCard.tsx +3 -1
  64. package/src/components/TkxConfigProvider.tsx +458 -0
  65. package/src/components/TkxDataGrid.tsx +540 -0
  66. package/src/components/TkxEmpty.tsx +219 -0
  67. package/src/components/TkxForm.tsx +607 -0
  68. package/src/components/TkxLayout.tsx +647 -0
  69. package/src/components/TkxMasonry.tsx +176 -0
  70. package/src/components/TkxModal.tsx +4 -3
  71. package/src/components/TkxPopover.tsx +295 -0
  72. package/src/components/TkxRichTextDisplay.tsx +394 -0
  73. package/src/components/TkxSelect.tsx +2 -0
  74. package/src/components/TkxSlider.tsx +1 -0
  75. package/src/components/TkxSnackbar.tsx +314 -0
  76. package/src/components/TkxSpeedDial.tsx +395 -0
  77. package/src/components/TkxSpin.tsx +261 -0
  78. package/src/components/TkxStatistic.tsx +261 -0
  79. package/src/components/TkxToolbar.tsx +260 -0
  80. package/src/components/TkxTooltip.tsx +3 -2
  81. package/src/components/TkxTransferList.tsx +487 -0
  82. package/src/components/TkxTreeView.tsx +421 -0
  83. package/src/components/TkxTypography.tsx +263 -0
  84. package/src/components/index.ts +20 -0
  85. package/src/hooks/index.ts +1 -1
  86. package/src/i18n/I18nProvider.tsx +36 -0
  87. package/src/i18n/index.ts +237 -0
  88. package/src/themes/index.ts +149 -0
  89. package/dist/tests/TkxButton.test.d.ts +0 -2
  90. package/dist/tests/TkxButton.test.d.ts.map +0 -1
  91. package/dist/tests/a11y/components.test.d.ts +0 -2
  92. package/dist/tests/a11y/components.test.d.ts.map +0 -1
  93. package/dist/tests/quantum.test.d.ts +0 -2
  94. package/dist/tests/quantum.test.d.ts.map +0 -1
  95. package/dist/tests/security.test.d.ts +0 -2
  96. package/dist/tests/security.test.d.ts.map +0 -1
  97. package/dist/tests/setup.d.ts +0 -2
  98. package/dist/tests/setup.d.ts.map +0 -1
  99. package/dist/tests/tkx.test.d.ts +0 -2
  100. package/dist/tests/tkx.test.d.ts.map +0 -1
  101. package/dist/tests/wcag.test.d.ts +0 -2
  102. package/dist/tests/wcag.test.d.ts.map +0 -1
@@ -0,0 +1,2614 @@
1
+ import { type ReactNode, type CSSProperties } from 'react';
2
+ export type TypographyType = 'default' | 'secondary' | 'success' | 'warning' | 'danger';
3
+ export interface TkxTitleProps {
4
+ level?: 1 | 2 | 3 | 4 | 5;
5
+ children: ReactNode;
6
+ copyable?: boolean;
7
+ type?: TypographyType;
8
+ style?: CSSProperties;
9
+ }
10
+ export interface TkxTextProps {
11
+ children: ReactNode;
12
+ type?: TypographyType;
13
+ strong?: boolean;
14
+ italic?: boolean;
15
+ underline?: boolean;
16
+ delete?: boolean;
17
+ code?: boolean;
18
+ mark?: boolean;
19
+ copyable?: boolean;
20
+ style?: CSSProperties;
21
+ }
22
+ export interface TkxParagraphProps {
23
+ children: ReactNode;
24
+ type?: 'default' | 'secondary';
25
+ copyable?: boolean;
26
+ ellipsis?: boolean | {
27
+ rows?: number;
28
+ };
29
+ style?: CSSProperties;
30
+ }
31
+ export declare function TkxTitle({ level, children, copyable, type, style, }: TkxTitleProps): import("react").ReactElement<{
32
+ style: {
33
+ accentColor?: import("csstype").Property.AccentColor | undefined;
34
+ alignContent?: import("csstype").Property.AlignContent | undefined;
35
+ alignItems?: import("csstype").Property.AlignItems | undefined;
36
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
37
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
38
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
39
+ anchorName?: import("csstype").Property.AnchorName | undefined;
40
+ anchorScope?: import("csstype").Property.AnchorScope | undefined;
41
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
42
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
43
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
44
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
45
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
46
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
47
+ animationName?: import("csstype").Property.AnimationName | undefined;
48
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
49
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
50
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
51
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
52
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
53
+ appearance?: import("csstype").Property.Appearance | undefined;
54
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
55
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
56
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
57
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
58
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
59
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
60
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
61
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
62
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
63
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
64
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
65
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
66
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
67
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
68
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
69
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
70
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
71
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
72
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
73
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
74
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
75
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
76
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
77
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
78
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
79
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
80
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
81
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
82
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
83
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
84
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
85
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
86
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
87
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
88
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
89
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
90
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
91
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
92
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
93
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
94
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
95
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
96
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
97
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
98
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
99
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
100
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
101
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
102
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
103
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
104
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
105
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
106
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
107
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
108
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
109
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
110
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
111
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
112
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
113
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
114
+ breakInside?: import("csstype").Property.BreakInside | undefined;
115
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
116
+ caretColor?: import("csstype").Property.CaretColor | undefined;
117
+ caretShape?: import("csstype").Property.CaretShape | undefined;
118
+ clear?: import("csstype").Property.Clear | undefined;
119
+ clipPath?: import("csstype").Property.ClipPath | undefined;
120
+ clipRule?: import("csstype").Property.ClipRule | undefined;
121
+ color: string;
122
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
123
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
124
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
125
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
126
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
127
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
128
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
129
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
130
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
131
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
132
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
133
+ contain?: import("csstype").Property.Contain | undefined;
134
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
135
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
136
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
137
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
138
+ containerName?: import("csstype").Property.ContainerName | undefined;
139
+ containerType?: import("csstype").Property.ContainerType | undefined;
140
+ content?: import("csstype").Property.Content | undefined;
141
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
142
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
143
+ counterReset?: import("csstype").Property.CounterReset | undefined;
144
+ counterSet?: import("csstype").Property.CounterSet | undefined;
145
+ cursor?: import("csstype").Property.Cursor | undefined;
146
+ cx?: import("csstype").Property.Cx<string | number> | undefined;
147
+ cy?: import("csstype").Property.Cy<string | number> | undefined;
148
+ d?: import("csstype").Property.D | undefined;
149
+ direction?: import("csstype").Property.Direction | undefined;
150
+ display?: import("csstype").Property.Display | undefined;
151
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
152
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
153
+ fieldSizing?: import("csstype").Property.FieldSizing | undefined;
154
+ fill?: import("csstype").Property.Fill | undefined;
155
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
156
+ fillRule?: import("csstype").Property.FillRule | undefined;
157
+ filter?: import("csstype").Property.Filter | undefined;
158
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
159
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
160
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
161
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
162
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
163
+ float?: import("csstype").Property.Float | undefined;
164
+ floodColor?: import("csstype").Property.FloodColor | undefined;
165
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
166
+ fontFamily: string;
167
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
168
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
169
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
170
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
171
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
172
+ fontSize: import("csstype").Property.FontSize<string | number>;
173
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
174
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
175
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
176
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
177
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
178
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
179
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
180
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
181
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
182
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
183
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
184
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
185
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
186
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
187
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
188
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
189
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
190
+ fontWeight: number | "bold" | (string & {}) | "inherit" | "initial" | "normal" | "-moz-initial" | "revert" | "revert-layer" | "unset" | "bolder" | "lighter";
191
+ fontWidth?: import("csstype").Property.FontWidth | undefined;
192
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
193
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
194
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
195
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
196
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
197
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
198
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
199
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
200
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
201
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
202
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
203
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
204
+ height?: import("csstype").Property.Height<string | number> | undefined;
205
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
206
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
207
+ hyphens?: import("csstype").Property.Hyphens | undefined;
208
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
209
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
210
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
211
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
212
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
213
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
214
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
215
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
216
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
217
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
218
+ interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
219
+ isolation?: import("csstype").Property.Isolation | undefined;
220
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
221
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
222
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
223
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
224
+ left?: import("csstype").Property.Left<string | number> | undefined;
225
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
226
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
227
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
228
+ lineHeight: import("csstype").Property.LineHeight<string | number>;
229
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
230
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
231
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
232
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
233
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
234
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
235
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
236
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
237
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
238
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
239
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
240
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
241
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
242
+ marker?: import("csstype").Property.Marker | undefined;
243
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
244
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
245
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
246
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
247
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
248
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
249
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
250
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
251
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
252
+ maskClip?: import("csstype").Property.MaskClip | undefined;
253
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
254
+ maskImage?: import("csstype").Property.MaskImage | undefined;
255
+ maskMode?: import("csstype").Property.MaskMode | undefined;
256
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
257
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
258
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
259
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
260
+ maskType?: import("csstype").Property.MaskType | undefined;
261
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
262
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
263
+ mathShift?: import("csstype").Property.MathShift | undefined;
264
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
265
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
266
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
267
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
268
+ maxLines?: import("csstype").Property.MaxLines | undefined;
269
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
270
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
271
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
272
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
273
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
274
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
275
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
276
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
277
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
278
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
279
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
280
+ objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
281
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
282
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
283
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
284
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
285
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
286
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
287
+ opacity?: import("csstype").Property.Opacity | undefined;
288
+ order?: import("csstype").Property.Order | undefined;
289
+ orphans?: import("csstype").Property.Orphans | undefined;
290
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
291
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
292
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
293
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
294
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
295
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
296
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
297
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
298
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
299
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
300
+ overflowX?: import("csstype").Property.OverflowX | undefined;
301
+ overflowY?: import("csstype").Property.OverflowY | undefined;
302
+ overlay?: import("csstype").Property.Overlay | undefined;
303
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
304
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
305
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
306
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
307
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
308
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
309
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
310
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
311
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
312
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
313
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
314
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
315
+ page?: import("csstype").Property.Page | undefined;
316
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
317
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
318
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
319
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
320
+ position?: import("csstype").Property.Position | undefined;
321
+ positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
322
+ positionArea?: import("csstype").Property.PositionArea | undefined;
323
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
324
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
325
+ positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
326
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
327
+ quotes?: import("csstype").Property.Quotes | undefined;
328
+ r?: import("csstype").Property.R<string | number> | undefined;
329
+ resize?: import("csstype").Property.Resize | undefined;
330
+ right?: import("csstype").Property.Right<string | number> | undefined;
331
+ rotate?: import("csstype").Property.Rotate | undefined;
332
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
333
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
334
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
335
+ rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
336
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
337
+ rx?: import("csstype").Property.Rx<string | number> | undefined;
338
+ ry?: import("csstype").Property.Ry<string | number> | undefined;
339
+ scale?: import("csstype").Property.Scale | undefined;
340
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
341
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
342
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
343
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
344
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
345
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
346
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
347
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
348
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
349
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
350
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
351
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
352
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
353
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
354
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
355
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
356
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
357
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
358
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
359
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
360
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
361
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
362
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
363
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
364
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
365
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
366
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
367
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
368
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
369
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
370
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
371
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
372
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
373
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
374
+ speakAs?: import("csstype").Property.SpeakAs | undefined;
375
+ stopColor?: import("csstype").Property.StopColor | undefined;
376
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
377
+ stroke?: import("csstype").Property.Stroke | undefined;
378
+ strokeColor?: import("csstype").Property.StrokeColor | undefined;
379
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
380
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
381
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
382
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
383
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
384
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
385
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
386
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
387
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
388
+ textAlign?: import("csstype").Property.TextAlign | undefined;
389
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
390
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
391
+ textAutospace?: import("csstype").Property.TextAutospace | undefined;
392
+ textBox?: import("csstype").Property.TextBox | undefined;
393
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
394
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
395
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
396
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
397
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
398
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
399
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
400
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
401
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
402
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
403
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
404
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
405
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
406
+ textJustify?: import("csstype").Property.TextJustify | undefined;
407
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
408
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
409
+ textRendering?: import("csstype").Property.TextRendering | undefined;
410
+ textShadow?: import("csstype").Property.TextShadow | undefined;
411
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
412
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
413
+ textTransform?: import("csstype").Property.TextTransform | undefined;
414
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
415
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
416
+ textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
417
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
418
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
419
+ top?: import("csstype").Property.Top<string | number> | undefined;
420
+ touchAction?: import("csstype").Property.TouchAction | undefined;
421
+ transform?: import("csstype").Property.Transform | undefined;
422
+ transformBox?: import("csstype").Property.TransformBox | undefined;
423
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
424
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
425
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
426
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
427
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
428
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
429
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
430
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
431
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
432
+ userSelect?: import("csstype").Property.UserSelect | undefined;
433
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
434
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
435
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
436
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
437
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
438
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
439
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
440
+ visibility?: import("csstype").Property.Visibility | undefined;
441
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
442
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
443
+ widows?: import("csstype").Property.Widows | undefined;
444
+ width?: import("csstype").Property.Width<string | number> | undefined;
445
+ willChange?: import("csstype").Property.WillChange | undefined;
446
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
447
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
448
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
449
+ writingMode?: import("csstype").Property.WritingMode | undefined;
450
+ x?: import("csstype").Property.X<string | number> | undefined;
451
+ y?: import("csstype").Property.Y<string | number> | undefined;
452
+ zIndex?: import("csstype").Property.ZIndex | undefined;
453
+ zoom?: import("csstype").Property.Zoom | undefined;
454
+ all?: import("csstype").Property.All | undefined;
455
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
456
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
457
+ background?: import("csstype").Property.Background<string | number> | undefined;
458
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
459
+ border?: import("csstype").Property.Border<string | number> | undefined;
460
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
461
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
462
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
463
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
464
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
465
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
466
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
467
+ borderColor?: import("csstype").Property.BorderColor | undefined;
468
+ borderImage?: import("csstype").Property.BorderImage | undefined;
469
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
470
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
471
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
472
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
473
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
474
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
475
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
476
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
477
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
478
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
479
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
480
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
481
+ caret?: import("csstype").Property.Caret | undefined;
482
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
483
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
484
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
485
+ container?: import("csstype").Property.Container | undefined;
486
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
487
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
488
+ font?: import("csstype").Property.Font | undefined;
489
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
490
+ grid?: import("csstype").Property.Grid | undefined;
491
+ gridArea?: import("csstype").Property.GridArea | undefined;
492
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
493
+ gridRow?: import("csstype").Property.GridRow | undefined;
494
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
495
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
496
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
497
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
498
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
499
+ listStyle?: import("csstype").Property.ListStyle | undefined;
500
+ margin: import("csstype").Property.Margin<string | number>;
501
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
502
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
503
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
504
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
505
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
506
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
507
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
508
+ overflow?: import("csstype").Property.Overflow | undefined;
509
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
510
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
511
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
512
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
513
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
514
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
515
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
516
+ positionTry?: import("csstype").Property.PositionTry | undefined;
517
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
518
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
519
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
520
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
521
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
522
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
523
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
524
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
525
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
526
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
527
+ textWrap?: import("csstype").Property.TextWrap | undefined;
528
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
529
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
530
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
531
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
532
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
533
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
534
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
535
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
536
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
537
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
538
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
539
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
540
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
541
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
542
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
543
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
544
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
545
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
546
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
547
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
548
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
549
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
550
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
551
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
552
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
553
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
554
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
555
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
556
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
557
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
558
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
559
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
560
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
561
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
562
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
563
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
564
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
565
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
566
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
567
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
568
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
569
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
570
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
571
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
572
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
573
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
574
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
575
+ MozTransform?: import("csstype").Property.Transform | undefined;
576
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
577
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
578
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
579
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
580
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
581
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
582
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
583
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
584
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
585
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
586
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
587
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
588
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
589
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
590
+ msFilter?: import("csstype").Property.MsFilter | undefined;
591
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
592
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
593
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
594
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
595
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
596
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
597
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
598
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
599
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
600
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
601
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
602
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
603
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
604
+ msOrder?: import("csstype").Property.Order | undefined;
605
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
606
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
607
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
608
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
609
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
610
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
611
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
612
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
613
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
614
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
615
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
616
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
617
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
618
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
619
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
620
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
621
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
622
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
623
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
624
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
625
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
626
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
627
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
628
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
629
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
630
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
631
+ msTransform?: import("csstype").Property.Transform | undefined;
632
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
633
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
634
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
635
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
636
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
637
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
638
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
639
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
640
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
641
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
642
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
643
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
644
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
645
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
646
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
647
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
648
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
649
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
650
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
651
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
652
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
653
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
654
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
655
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
656
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
657
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
658
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
659
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
660
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
661
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
662
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
663
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
664
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
665
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
666
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
667
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
668
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
669
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
670
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
671
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
672
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
673
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
674
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
675
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
676
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
677
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
678
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
679
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
680
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
681
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
682
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
683
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
684
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
685
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
686
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
687
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
688
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
689
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
690
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
691
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
692
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
693
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
694
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
695
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
696
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
697
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
698
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
699
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
700
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
701
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
702
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
703
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
704
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
705
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
706
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
707
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
708
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
709
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
710
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
711
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
712
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
713
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
714
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
715
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
716
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
717
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
718
+ WebkitOrder?: import("csstype").Property.Order | undefined;
719
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
720
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
721
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
722
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
723
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
724
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
725
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
726
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
727
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
728
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
729
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
730
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
731
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
732
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
733
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
734
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
735
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
736
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
737
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
738
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
739
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
740
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
741
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
742
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
743
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
744
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
745
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
746
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
747
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
748
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
749
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
750
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
751
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
752
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
753
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
754
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
755
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
756
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
757
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
758
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
759
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
760
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
761
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
762
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
763
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
764
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
765
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
766
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
767
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
768
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
769
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
770
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
771
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
772
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
773
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
774
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
775
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
776
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
777
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
778
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
779
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
780
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
781
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
782
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
783
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
784
+ boxLines?: import("csstype").Property.BoxLines | undefined;
785
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
786
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
787
+ boxPack?: import("csstype").Property.BoxPack | undefined;
788
+ clip?: import("csstype").Property.Clip | undefined;
789
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
790
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
791
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
792
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
793
+ imeMode?: import("csstype").Property.ImeMode | undefined;
794
+ insetArea?: import("csstype").Property.PositionArea | undefined;
795
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
796
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
797
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
798
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
799
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
800
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
801
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
802
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
803
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
804
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
805
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
806
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
807
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
808
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
809
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
810
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
811
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
812
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
813
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
814
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
815
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
816
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
817
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
818
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
819
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
820
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
821
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
822
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
823
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
824
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
825
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
826
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
827
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
828
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
829
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
830
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
831
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
832
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
833
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
834
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
835
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
836
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
837
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
838
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
839
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
840
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
841
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
842
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
843
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
844
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
845
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
846
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
847
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
848
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
849
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
850
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
851
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
852
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
853
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
854
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
855
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
856
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
857
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
858
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
859
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
860
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
861
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
862
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
863
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
864
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
865
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
866
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
867
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
868
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
869
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
870
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
871
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
872
+ OTransform?: import("csstype").Property.Transform | undefined;
873
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
874
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
875
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
876
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
877
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
878
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
879
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
880
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
881
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
882
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
883
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
884
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
885
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
886
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
887
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
888
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
889
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
890
+ };
891
+ }, string | import("react").JSXElementConstructor<any>>;
892
+ export declare function TkxText({ children, type, strong, italic, underline, delete: strikethrough, code, mark, copyable, style, }: TkxTextProps): import("react").DetailedReactHTMLElement<{
893
+ style: {
894
+ accentColor?: import("csstype").Property.AccentColor | undefined;
895
+ alignContent?: import("csstype").Property.AlignContent | undefined;
896
+ alignItems?: import("csstype").Property.AlignItems | undefined;
897
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
898
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
899
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
900
+ anchorName?: import("csstype").Property.AnchorName | undefined;
901
+ anchorScope?: import("csstype").Property.AnchorScope | undefined;
902
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
903
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
904
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
905
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
906
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
907
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
908
+ animationName?: import("csstype").Property.AnimationName | undefined;
909
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
910
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
911
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
912
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
913
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
914
+ appearance?: import("csstype").Property.Appearance | undefined;
915
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
916
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
917
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
918
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
919
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
920
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
921
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
922
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
923
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
924
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
925
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
926
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
927
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
928
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
929
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
930
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
931
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
932
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
933
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
934
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
935
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
936
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
937
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
938
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
939
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
940
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
941
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
942
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
943
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
944
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
945
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
946
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
947
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
948
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
949
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
950
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
951
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
952
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
953
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
954
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
955
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
956
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
957
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
958
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
959
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
960
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
961
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
962
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
963
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
964
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
965
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
966
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
967
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
968
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
969
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
970
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
971
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
972
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
973
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
974
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
975
+ breakInside?: import("csstype").Property.BreakInside | undefined;
976
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
977
+ caretColor?: import("csstype").Property.CaretColor | undefined;
978
+ caretShape?: import("csstype").Property.CaretShape | undefined;
979
+ clear?: import("csstype").Property.Clear | undefined;
980
+ clipPath?: import("csstype").Property.ClipPath | undefined;
981
+ clipRule?: import("csstype").Property.ClipRule | undefined;
982
+ color: string;
983
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
984
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
985
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
986
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
987
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
988
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
989
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
990
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
991
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
992
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
993
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
994
+ contain?: import("csstype").Property.Contain | undefined;
995
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
996
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
997
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
998
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
999
+ containerName?: import("csstype").Property.ContainerName | undefined;
1000
+ containerType?: import("csstype").Property.ContainerType | undefined;
1001
+ content?: import("csstype").Property.Content | undefined;
1002
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1003
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1004
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1005
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1006
+ cursor?: import("csstype").Property.Cursor | undefined;
1007
+ cx?: import("csstype").Property.Cx<string | number> | undefined;
1008
+ cy?: import("csstype").Property.Cy<string | number> | undefined;
1009
+ d?: import("csstype").Property.D | undefined;
1010
+ direction?: import("csstype").Property.Direction | undefined;
1011
+ display?: import("csstype").Property.Display | undefined;
1012
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1013
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1014
+ fieldSizing?: import("csstype").Property.FieldSizing | undefined;
1015
+ fill?: import("csstype").Property.Fill | undefined;
1016
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1017
+ fillRule?: import("csstype").Property.FillRule | undefined;
1018
+ filter?: import("csstype").Property.Filter | undefined;
1019
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1020
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1021
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1022
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1023
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1024
+ float?: import("csstype").Property.Float | undefined;
1025
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1026
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1027
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1028
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1029
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1030
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1031
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1032
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1033
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1034
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1035
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1036
+ fontStyle: import("csstype").Property.FontStyle;
1037
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1038
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1039
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1040
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1041
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1042
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1043
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1044
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1045
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1046
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1047
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1048
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1049
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1050
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1051
+ fontWeight: import("csstype").Property.FontWeight | 600;
1052
+ fontWidth?: import("csstype").Property.FontWidth | undefined;
1053
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1054
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1055
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1056
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1057
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1058
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1059
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1060
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1061
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1062
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1063
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1064
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1065
+ height?: import("csstype").Property.Height<string | number> | undefined;
1066
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1067
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1068
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1069
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1070
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1071
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1072
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1073
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
1074
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1075
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1076
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1077
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1078
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1079
+ interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
1080
+ isolation?: import("csstype").Property.Isolation | undefined;
1081
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1082
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1083
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1084
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1085
+ left?: import("csstype").Property.Left<string | number> | undefined;
1086
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1087
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1088
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1089
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1090
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1091
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1092
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1093
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1094
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1095
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1096
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1097
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1098
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1099
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1100
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1101
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1102
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1103
+ marker?: import("csstype").Property.Marker | undefined;
1104
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1105
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1106
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1107
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1108
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1109
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1110
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1111
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1112
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1113
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1114
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1115
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1116
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1117
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1118
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1119
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1120
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1121
+ maskType?: import("csstype").Property.MaskType | undefined;
1122
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1123
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1124
+ mathShift?: import("csstype").Property.MathShift | undefined;
1125
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1126
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1127
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1128
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1129
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1130
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1131
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1132
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1133
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1134
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1135
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1136
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1137
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1138
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1139
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1140
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1141
+ objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
1142
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1143
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1144
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1145
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1146
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1147
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1148
+ opacity?: import("csstype").Property.Opacity | undefined;
1149
+ order?: import("csstype").Property.Order | undefined;
1150
+ orphans?: import("csstype").Property.Orphans | undefined;
1151
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1152
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1153
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1154
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1155
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1156
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1157
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1158
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1159
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1160
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1161
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1162
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1163
+ overlay?: import("csstype").Property.Overlay | undefined;
1164
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1165
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1166
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1167
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1168
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1169
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1170
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1171
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1172
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1173
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1174
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1175
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1176
+ page?: import("csstype").Property.Page | undefined;
1177
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1178
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1179
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1180
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1181
+ position?: import("csstype").Property.Position | undefined;
1182
+ positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
1183
+ positionArea?: import("csstype").Property.PositionArea | undefined;
1184
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
1185
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
1186
+ positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
1187
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1188
+ quotes?: import("csstype").Property.Quotes | undefined;
1189
+ r?: import("csstype").Property.R<string | number> | undefined;
1190
+ resize?: import("csstype").Property.Resize | undefined;
1191
+ right?: import("csstype").Property.Right<string | number> | undefined;
1192
+ rotate?: import("csstype").Property.Rotate | undefined;
1193
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1194
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1195
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1196
+ rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
1197
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1198
+ rx?: import("csstype").Property.Rx<string | number> | undefined;
1199
+ ry?: import("csstype").Property.Ry<string | number> | undefined;
1200
+ scale?: import("csstype").Property.Scale | undefined;
1201
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1202
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
1203
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1204
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1205
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1206
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1207
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1208
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1209
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1210
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1211
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1212
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1213
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1214
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1215
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1216
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1217
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1218
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1219
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1220
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1221
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1222
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1223
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1224
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1225
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1226
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1227
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1228
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1229
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1230
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1231
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1232
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1233
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1234
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1235
+ speakAs?: import("csstype").Property.SpeakAs | undefined;
1236
+ stopColor?: import("csstype").Property.StopColor | undefined;
1237
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1238
+ stroke?: import("csstype").Property.Stroke | undefined;
1239
+ strokeColor?: import("csstype").Property.StrokeColor | undefined;
1240
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1241
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1242
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1243
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1244
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1245
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1246
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1247
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1248
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1249
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1250
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1251
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1252
+ textAutospace?: import("csstype").Property.TextAutospace | undefined;
1253
+ textBox?: import("csstype").Property.TextBox | undefined;
1254
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
1255
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
1256
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1257
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1258
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1259
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1260
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1261
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1262
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1263
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1264
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1265
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1266
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
1267
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1268
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1269
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1270
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1271
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1272
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1273
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
1274
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1275
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1276
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1277
+ textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
1278
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
1279
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1280
+ top?: import("csstype").Property.Top<string | number> | undefined;
1281
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1282
+ transform?: import("csstype").Property.Transform | undefined;
1283
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1284
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1285
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1286
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1287
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1288
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1289
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1290
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1291
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
1292
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1293
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1294
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1295
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1296
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1297
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1298
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1299
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
1300
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1301
+ visibility?: import("csstype").Property.Visibility | undefined;
1302
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1303
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1304
+ widows?: import("csstype").Property.Widows | undefined;
1305
+ width?: import("csstype").Property.Width<string | number> | undefined;
1306
+ willChange?: import("csstype").Property.WillChange | undefined;
1307
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1308
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
1309
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1310
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1311
+ x?: import("csstype").Property.X<string | number> | undefined;
1312
+ y?: import("csstype").Property.Y<string | number> | undefined;
1313
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1314
+ zoom?: import("csstype").Property.Zoom | undefined;
1315
+ all?: import("csstype").Property.All | undefined;
1316
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1317
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
1318
+ background?: import("csstype").Property.Background<string | number> | undefined;
1319
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1320
+ border?: import("csstype").Property.Border<string | number> | undefined;
1321
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
1322
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1323
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1324
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1325
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1326
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1327
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
1328
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1329
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1330
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
1331
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1332
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1333
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1334
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1335
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1336
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
1337
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1338
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
1339
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1340
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
1341
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
1342
+ caret?: import("csstype").Property.Caret | undefined;
1343
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1344
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
1345
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1346
+ container?: import("csstype").Property.Container | undefined;
1347
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
1348
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1349
+ font?: import("csstype").Property.Font | undefined;
1350
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
1351
+ grid?: import("csstype").Property.Grid | undefined;
1352
+ gridArea?: import("csstype").Property.GridArea | undefined;
1353
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1354
+ gridRow?: import("csstype").Property.GridRow | undefined;
1355
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1356
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
1357
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1358
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1359
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1360
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1361
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
1362
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
1363
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
1364
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
1365
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1366
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
1367
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
1368
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
1369
+ overflow?: import("csstype").Property.Overflow | undefined;
1370
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1371
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
1372
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1373
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
1374
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1375
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1376
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1377
+ positionTry?: import("csstype").Property.PositionTry | undefined;
1378
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1379
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1380
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1381
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1382
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1383
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1384
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1385
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1386
+ textDecoration: import("csstype").Property.TextDecoration<string | number>;
1387
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1388
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1389
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1390
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1391
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1392
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1393
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1394
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1395
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1396
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1397
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1398
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1399
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1400
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1401
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1402
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1403
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1404
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1405
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1406
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1407
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1408
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1409
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1410
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1411
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1412
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1413
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1414
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1415
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1416
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1417
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1418
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1419
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1420
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1421
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1422
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1423
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1424
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1425
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1426
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1427
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1428
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1429
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1430
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1431
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1432
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1433
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1434
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1435
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1436
+ MozTransform?: import("csstype").Property.Transform | undefined;
1437
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1438
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1439
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1440
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1441
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1442
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1443
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1444
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1445
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1446
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1447
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1448
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1449
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1450
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1451
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1452
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1453
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1454
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1455
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1456
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1457
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
1458
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1459
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1460
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1461
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1462
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1463
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1464
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1465
+ msOrder?: import("csstype").Property.Order | undefined;
1466
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1467
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1468
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1469
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1470
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1471
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1472
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1473
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1474
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1475
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1476
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1477
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1478
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1479
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1480
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1481
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1482
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1483
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1484
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1485
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1486
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1487
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1488
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1489
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1490
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1491
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1492
+ msTransform?: import("csstype").Property.Transform | undefined;
1493
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1494
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1495
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1496
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1497
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1498
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1499
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1500
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1501
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1502
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1503
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1504
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1505
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1506
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1507
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1508
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1509
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1510
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1511
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1512
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1513
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1514
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1515
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1516
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1517
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1518
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1519
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1520
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1521
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1522
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1523
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1524
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1525
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1526
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1527
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1528
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1529
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1530
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1531
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1532
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1533
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1534
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1535
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1536
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1537
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1538
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1539
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1540
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1541
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1542
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1543
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1544
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1545
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1546
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1547
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1548
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1549
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
1550
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1551
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1552
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1553
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1554
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1555
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1556
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1557
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
1558
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
1559
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1560
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1561
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1562
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1563
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1564
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1565
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1566
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1567
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1568
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1569
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1570
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1571
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1572
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1573
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1574
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1575
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1576
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1577
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1578
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1579
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1580
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1581
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1582
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1583
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1584
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1585
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1586
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1587
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1588
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1589
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1590
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1591
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1592
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1593
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1594
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1595
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1596
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1597
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1598
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1599
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1600
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1601
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1602
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1603
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1604
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1605
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1606
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1607
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1608
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1609
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1610
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1611
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1612
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1613
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
1614
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1615
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1616
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1617
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1618
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
1619
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1620
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1621
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1622
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1623
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
1624
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1625
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1626
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1627
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1628
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1629
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1630
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1631
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1632
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1633
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1634
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1635
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1636
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1637
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1638
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1639
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1640
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1641
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1642
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1643
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1644
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1645
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1646
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1647
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1648
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1649
+ clip?: import("csstype").Property.Clip | undefined;
1650
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1651
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1652
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1653
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1654
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1655
+ insetArea?: import("csstype").Property.PositionArea | undefined;
1656
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1657
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1658
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1659
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1660
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1661
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1662
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1663
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1664
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1665
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
1666
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1667
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1668
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1669
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1670
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1671
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1672
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1673
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1674
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1675
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1676
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1677
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1678
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1679
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1680
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1681
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1682
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1683
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1684
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1685
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1686
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1687
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1688
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1689
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1690
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1691
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1692
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1693
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1694
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1695
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1696
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1697
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1698
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1699
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1700
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1701
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1702
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1703
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1704
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1705
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1706
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1707
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1708
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1709
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1710
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1711
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1712
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1713
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1714
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1715
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1716
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1717
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1718
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1719
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1720
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1721
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1722
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1723
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1724
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1725
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1726
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1727
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1728
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1729
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1730
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1731
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1732
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1733
+ OTransform?: import("csstype").Property.Transform | undefined;
1734
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1735
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1736
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1737
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1738
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1739
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1740
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1741
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1742
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1743
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1744
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1745
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1746
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1747
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1748
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1749
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1750
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1751
+ };
1752
+ }, HTMLElement>;
1753
+ export declare function TkxParagraph({ children, type, copyable, ellipsis, style, }: TkxParagraphProps): import("react").DetailedReactHTMLElement<{
1754
+ style: {
1755
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1756
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1757
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1758
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1759
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1760
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1761
+ anchorName?: import("csstype").Property.AnchorName | undefined;
1762
+ anchorScope?: import("csstype").Property.AnchorScope | undefined;
1763
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1764
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1765
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1766
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1767
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1768
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1769
+ animationName?: import("csstype").Property.AnimationName | undefined;
1770
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1771
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1772
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1773
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1774
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1775
+ appearance?: import("csstype").Property.Appearance | undefined;
1776
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1777
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1778
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1779
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1780
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1781
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1782
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1783
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1784
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1785
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1786
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1787
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1788
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1789
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1790
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1791
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1792
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1793
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1794
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1795
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1796
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1797
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1798
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1799
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1800
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1801
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1802
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1803
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1804
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1805
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1806
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1807
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1808
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1809
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1810
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1811
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1812
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1813
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1814
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1815
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1816
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1817
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1818
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1819
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1820
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1821
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1822
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1823
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1824
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1825
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1826
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1827
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1828
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1829
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1830
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1831
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1832
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1833
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1834
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1835
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1836
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1837
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1838
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1839
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1840
+ clear?: import("csstype").Property.Clear | undefined;
1841
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1842
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1843
+ color: string;
1844
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1845
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
1846
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1847
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1848
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1849
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1850
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1851
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1852
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1853
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1854
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1855
+ contain?: import("csstype").Property.Contain | undefined;
1856
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1857
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1858
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1859
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1860
+ containerName?: import("csstype").Property.ContainerName | undefined;
1861
+ containerType?: import("csstype").Property.ContainerType | undefined;
1862
+ content?: import("csstype").Property.Content | undefined;
1863
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1864
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1865
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1866
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1867
+ cursor?: import("csstype").Property.Cursor | undefined;
1868
+ cx?: import("csstype").Property.Cx<string | number> | undefined;
1869
+ cy?: import("csstype").Property.Cy<string | number> | undefined;
1870
+ d?: import("csstype").Property.D | undefined;
1871
+ direction?: import("csstype").Property.Direction | undefined;
1872
+ display?: import("csstype").Property.Display | undefined;
1873
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1874
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1875
+ fieldSizing?: import("csstype").Property.FieldSizing | undefined;
1876
+ fill?: import("csstype").Property.Fill | undefined;
1877
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1878
+ fillRule?: import("csstype").Property.FillRule | undefined;
1879
+ filter?: import("csstype").Property.Filter | undefined;
1880
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1881
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1882
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1883
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1884
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1885
+ float?: import("csstype").Property.Float | undefined;
1886
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1887
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1888
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1889
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1890
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1891
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1892
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1893
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1894
+ fontSize: import("csstype").Property.FontSize<string | number>;
1895
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1896
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1897
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1898
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1899
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1900
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1901
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1902
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1903
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1904
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1905
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1906
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1907
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1908
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1909
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1910
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1911
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1912
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1913
+ fontWidth?: import("csstype").Property.FontWidth | undefined;
1914
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1915
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1916
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1917
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1918
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1919
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1920
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1921
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1922
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1923
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1924
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1925
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1926
+ height?: import("csstype").Property.Height<string | number> | undefined;
1927
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1928
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1929
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1930
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1931
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1932
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1933
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1934
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
1935
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1936
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1937
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1938
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1939
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1940
+ interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
1941
+ isolation?: import("csstype").Property.Isolation | undefined;
1942
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1943
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1944
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1945
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1946
+ left?: import("csstype").Property.Left<string | number> | undefined;
1947
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1948
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1949
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1950
+ lineHeight: import("csstype").Property.LineHeight<string | number>;
1951
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1952
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1953
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1954
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1955
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1956
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1957
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1958
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1959
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1960
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1961
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1962
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1963
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1964
+ marker?: import("csstype").Property.Marker | undefined;
1965
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1966
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1967
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1968
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1969
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1970
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1971
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1972
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1973
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1974
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1975
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1976
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1977
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1978
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1979
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1980
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1981
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1982
+ maskType?: import("csstype").Property.MaskType | undefined;
1983
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1984
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1985
+ mathShift?: import("csstype").Property.MathShift | undefined;
1986
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1987
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1988
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1989
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1990
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1991
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1992
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1993
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1994
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1995
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1996
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1997
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1998
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1999
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
2000
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
2001
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2002
+ objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
2003
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2004
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2005
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
2006
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2007
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
2008
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
2009
+ opacity?: import("csstype").Property.Opacity | undefined;
2010
+ order?: import("csstype").Property.Order | undefined;
2011
+ orphans?: import("csstype").Property.Orphans | undefined;
2012
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
2013
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2014
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2015
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2016
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
2017
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
2018
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
2019
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2020
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
2021
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
2022
+ overflowX?: import("csstype").Property.OverflowX | undefined;
2023
+ overflowY?: import("csstype").Property.OverflowY | undefined;
2024
+ overlay?: import("csstype").Property.Overlay | undefined;
2025
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2026
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2027
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
2028
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
2029
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2030
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2031
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2032
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2033
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2034
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2035
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
2036
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
2037
+ page?: import("csstype").Property.Page | undefined;
2038
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
2039
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
2040
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2041
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
2042
+ position?: import("csstype").Property.Position | undefined;
2043
+ positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
2044
+ positionArea?: import("csstype").Property.PositionArea | undefined;
2045
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
2046
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
2047
+ positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
2048
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2049
+ quotes?: import("csstype").Property.Quotes | undefined;
2050
+ r?: import("csstype").Property.R<string | number> | undefined;
2051
+ resize?: import("csstype").Property.Resize | undefined;
2052
+ right?: import("csstype").Property.Right<string | number> | undefined;
2053
+ rotate?: import("csstype").Property.Rotate | undefined;
2054
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
2055
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
2056
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
2057
+ rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
2058
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
2059
+ rx?: import("csstype").Property.Rx<string | number> | undefined;
2060
+ ry?: import("csstype").Property.Ry<string | number> | undefined;
2061
+ scale?: import("csstype").Property.Scale | undefined;
2062
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
2063
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
2064
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2065
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2066
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2067
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2068
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2069
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2070
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2071
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2072
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2073
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2074
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2075
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2076
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2077
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2078
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2079
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2080
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2081
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2082
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2083
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2084
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2085
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2086
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2087
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2088
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2089
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2090
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2091
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2092
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2093
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2094
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2095
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2096
+ speakAs?: import("csstype").Property.SpeakAs | undefined;
2097
+ stopColor?: import("csstype").Property.StopColor | undefined;
2098
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2099
+ stroke?: import("csstype").Property.Stroke | undefined;
2100
+ strokeColor?: import("csstype").Property.StrokeColor | undefined;
2101
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2102
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2103
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2104
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2105
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2106
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2107
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2108
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2109
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
2110
+ textAlign?: import("csstype").Property.TextAlign | undefined;
2111
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2112
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2113
+ textAutospace?: import("csstype").Property.TextAutospace | undefined;
2114
+ textBox?: import("csstype").Property.TextBox | undefined;
2115
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
2116
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
2117
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2118
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2119
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2120
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2121
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2122
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2123
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2124
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2125
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2126
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2127
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2128
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2129
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2130
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2131
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2132
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2133
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2134
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
2135
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2136
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2137
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2138
+ textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
2139
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
2140
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2141
+ top?: import("csstype").Property.Top<string | number> | undefined;
2142
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2143
+ transform?: import("csstype").Property.Transform | undefined;
2144
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2145
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2146
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2147
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2148
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2149
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2150
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2151
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2152
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2153
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2154
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2155
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2156
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2157
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2158
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2159
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2160
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
2161
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2162
+ visibility?: import("csstype").Property.Visibility | undefined;
2163
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2164
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2165
+ widows?: import("csstype").Property.Widows | undefined;
2166
+ width?: import("csstype").Property.Width<string | number> | undefined;
2167
+ willChange?: import("csstype").Property.WillChange | undefined;
2168
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2169
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2170
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2171
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2172
+ x?: import("csstype").Property.X<string | number> | undefined;
2173
+ y?: import("csstype").Property.Y<string | number> | undefined;
2174
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2175
+ zoom?: import("csstype").Property.Zoom | undefined;
2176
+ all?: import("csstype").Property.All | undefined;
2177
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2178
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2179
+ background?: import("csstype").Property.Background<string | number> | undefined;
2180
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2181
+ border?: import("csstype").Property.Border<string | number> | undefined;
2182
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2183
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2184
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2185
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2186
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2187
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2188
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2189
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2190
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2191
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2192
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2193
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2194
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2195
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2196
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2197
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2198
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2199
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2200
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2201
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2202
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2203
+ caret?: import("csstype").Property.Caret | undefined;
2204
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2205
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2206
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2207
+ container?: import("csstype").Property.Container | undefined;
2208
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2209
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2210
+ font?: import("csstype").Property.Font | undefined;
2211
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2212
+ grid?: import("csstype").Property.Grid | undefined;
2213
+ gridArea?: import("csstype").Property.GridArea | undefined;
2214
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2215
+ gridRow?: import("csstype").Property.GridRow | undefined;
2216
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2217
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2218
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2219
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2220
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2221
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2222
+ margin: import("csstype").Property.Margin<string | number>;
2223
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2224
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2225
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2226
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2227
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2228
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2229
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2230
+ overflow?: import("csstype").Property.Overflow | undefined;
2231
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2232
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2233
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2234
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2235
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2236
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2237
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2238
+ positionTry?: import("csstype").Property.PositionTry | undefined;
2239
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2240
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2241
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2242
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2243
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2244
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2245
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2246
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2247
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2248
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2249
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2250
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2251
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2252
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2253
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2254
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2255
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2256
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2257
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2258
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2259
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2260
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2261
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2262
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2263
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2264
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2265
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2266
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2267
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2268
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2269
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2270
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2271
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2272
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2273
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2274
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2275
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2276
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2277
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2278
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2279
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2280
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2281
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2282
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2283
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2284
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2285
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2286
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2287
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2288
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2289
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2290
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2291
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2292
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2293
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2294
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2295
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2296
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2297
+ MozTransform?: import("csstype").Property.Transform | undefined;
2298
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2299
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2300
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2301
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2302
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2303
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2304
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2305
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2306
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2307
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2308
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2309
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2310
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2311
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2312
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2313
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2314
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2315
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2316
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2317
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2318
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2319
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2320
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2321
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2322
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2323
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2324
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2325
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2326
+ msOrder?: import("csstype").Property.Order | undefined;
2327
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2328
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2329
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2330
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2331
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2332
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2333
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2334
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2335
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2336
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2337
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2338
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2339
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2340
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2341
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2342
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2343
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2344
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2345
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2346
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2347
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2348
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2349
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2350
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2351
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2352
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2353
+ msTransform?: import("csstype").Property.Transform | undefined;
2354
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2355
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2356
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2357
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2358
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2359
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2360
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2361
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2362
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2363
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2364
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2365
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2366
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2367
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2368
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2369
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2370
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2371
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2372
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2373
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2374
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2375
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2376
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2377
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2378
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2379
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2380
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2381
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2382
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2383
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2384
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2385
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2386
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2387
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2388
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2389
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2390
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2391
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2392
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2393
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2394
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2395
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2396
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2397
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2398
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2399
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2400
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2401
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2402
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2403
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2404
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2405
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2406
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2407
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2408
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2409
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2410
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2411
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2412
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2413
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2414
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2415
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2416
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2417
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2418
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number> | undefined;
2419
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number> | undefined;
2420
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2421
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2422
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2423
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2424
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2425
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2426
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2427
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2428
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2429
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2430
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2431
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2432
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2433
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2434
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2435
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2436
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2437
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2438
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2439
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2440
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2441
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2442
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2443
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2444
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2445
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2446
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2447
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2448
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2449
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2450
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2451
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2452
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2453
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2454
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2455
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2456
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2457
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2458
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2459
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2460
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2461
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2462
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2463
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2464
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2465
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2466
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2467
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2468
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2469
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2470
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2471
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2472
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2473
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2474
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
2475
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2476
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2477
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2478
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2479
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2480
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2481
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2482
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2483
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2484
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2485
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2486
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2487
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2488
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2489
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2490
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2491
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2492
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2493
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2494
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2495
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2496
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2497
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2498
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2499
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2500
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2501
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2502
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2503
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2504
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2505
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2506
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2507
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2508
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2509
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2510
+ clip?: import("csstype").Property.Clip | undefined;
2511
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
2512
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2513
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2514
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2515
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2516
+ insetArea?: import("csstype").Property.PositionArea | undefined;
2517
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2518
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2519
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2520
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2521
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2522
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2523
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
2524
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
2525
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
2526
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
2527
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2528
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2529
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2530
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2531
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2532
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2533
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2534
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2535
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2536
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2537
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2538
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2539
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2540
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2541
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2542
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2543
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2544
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2545
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2546
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2547
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2548
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2549
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2550
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2551
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2552
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2553
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2554
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2555
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2556
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2557
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2558
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2559
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2560
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2561
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2562
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2563
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2564
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2565
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2566
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2567
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2568
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2569
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2570
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2571
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2572
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2573
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2574
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2575
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2576
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2577
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2578
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2579
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2580
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2581
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2582
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2583
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2584
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2585
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2586
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2587
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2588
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2589
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2590
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2591
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2592
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2593
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2594
+ OTransform?: import("csstype").Property.Transform | undefined;
2595
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2596
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2597
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2598
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2599
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2600
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2601
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2602
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2603
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2604
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2605
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2606
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2607
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2608
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2609
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2610
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2611
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2612
+ };
2613
+ }, HTMLElement>;
2614
+ //# sourceMappingURL=TkxTypography.d.ts.map