@uzum-tech/ui 2.0.0-beta.1 → 2.0.0-beta.3

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 (110) hide show
  1. package/dist/index.js +136 -75
  2. package/dist/index.mjs +137 -76
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/calendar/src/Calendar.d.ts +3 -0
  6. package/es/calendar/src/Calendar.mjs +4 -3
  7. package/es/checkbox/src/Checkbox.mjs +4 -4
  8. package/es/collapse/src/CollapseItem.mjs +5 -5
  9. package/es/config-provider/src/ConfigProvider.d.ts +3 -0
  10. package/es/config-provider/src/ConfigProvider.mjs +26 -12
  11. package/es/config-provider/src/internal-interface.d.ts +1 -0
  12. package/es/data-table/src/DataTable.mjs +3 -3
  13. package/es/date-picker/src/DatePicker.d.ts +3 -0
  14. package/es/date-picker/src/DatePicker.mjs +2 -0
  15. package/es/date-picker/src/panel/date.d.ts +2 -0
  16. package/es/date-picker/src/panel/daterange.d.ts +2 -0
  17. package/es/date-picker/src/panel/datetime.d.ts +2 -0
  18. package/es/date-picker/src/panel/datetimerange.d.ts +2 -0
  19. package/es/date-picker/src/panel/panelMonth.d.ts +4 -0
  20. package/es/date-picker/src/panel/panelMonthContent.d.ts +2 -0
  21. package/es/date-picker/src/panel/panelYear.d.ts +4 -0
  22. package/es/date-picker/src/panel/panelYearContent.d.ts +2 -0
  23. package/es/date-picker/src/panel/use-calendar.d.ts +1 -0
  24. package/es/date-picker/src/panel/use-calendar.mjs +10 -5
  25. package/es/date-picker/src/panel/use-dual-calendar.d.ts +1 -0
  26. package/es/date-picker/src/panel/use-dual-calendar.mjs +17 -13
  27. package/es/date-picker/src/panel/use-panel-common.d.ts +1 -0
  28. package/es/date-picker/src/panel/use-panel-common.mjs +1 -0
  29. package/es/date-picker/src/utils.d.ts +4 -4
  30. package/es/date-picker/src/utils.mjs +4 -4
  31. package/es/date-picker-v2/src/panel/CalendarPanel.d.ts +0 -1
  32. package/es/date-picker-v2/src/panel/CalendarPanel.mjs +7 -5
  33. package/es/date-picker-v2/src/panel/CalendarRangePanel.d.ts +0 -1
  34. package/es/date-picker-v2/src/panel/CalendarRangePanel.mjs +7 -5
  35. package/es/date-picker-v2/src/utils.d.ts +1 -1
  36. package/es/date-picker-v2/src/utils.mjs +1 -1
  37. package/es/dialog/src/DialogProvider.mjs +4 -3
  38. package/es/dynamic-input/src/DynamicInput.mjs +9 -7
  39. package/es/form/src/FormItem.mjs +6 -4
  40. package/es/grid/src/Grid.mjs +7 -1
  41. package/es/header/src/HeaderNavigation.d.ts +3 -3292
  42. package/es/header/src/HeaderNavigation.mjs +3 -2
  43. package/es/heatmap/src/Heatmap.mjs +4 -3
  44. package/es/image/src/Image.mjs +3 -4
  45. package/es/image/src/ImageGroup.d.ts +1 -1
  46. package/es/image/src/ImageGroup.mjs +5 -6
  47. package/es/menu/src/Menu.mjs +2 -3
  48. package/es/message/src/MessageProvider.mjs +4 -3
  49. package/es/modal/src/ModalProvider.mjs +4 -3
  50. package/es/notification/src/NotificationProvider.mjs +4 -3
  51. package/es/time/src/Time.d.ts +3 -0
  52. package/es/time/src/Time.mjs +3 -1
  53. package/es/time-picker/src/Panel.mjs +9 -2
  54. package/es/upload/src/Upload.mjs +10 -4
  55. package/es/version.d.ts +1 -1
  56. package/es/version.mjs +1 -1
  57. package/lib/calendar/src/Calendar.d.ts +3 -0
  58. package/lib/calendar/src/Calendar.js +4 -4
  59. package/lib/checkbox/src/Checkbox.js +3 -3
  60. package/lib/collapse/src/CollapseItem.js +3 -3
  61. package/lib/config-provider/src/ConfigProvider.d.ts +3 -0
  62. package/lib/config-provider/src/ConfigProvider.js +33 -18
  63. package/lib/config-provider/src/internal-interface.d.ts +1 -0
  64. package/lib/data-table/src/DataTable.js +2 -2
  65. package/lib/date-picker/src/DatePicker.d.ts +3 -0
  66. package/lib/date-picker/src/DatePicker.js +2 -1
  67. package/lib/date-picker/src/panel/date.d.ts +2 -0
  68. package/lib/date-picker/src/panel/daterange.d.ts +2 -0
  69. package/lib/date-picker/src/panel/datetime.d.ts +2 -0
  70. package/lib/date-picker/src/panel/datetimerange.d.ts +2 -0
  71. package/lib/date-picker/src/panel/panelMonth.d.ts +4 -0
  72. package/lib/date-picker/src/panel/panelMonthContent.d.ts +2 -0
  73. package/lib/date-picker/src/panel/panelYear.d.ts +4 -0
  74. package/lib/date-picker/src/panel/panelYearContent.d.ts +2 -0
  75. package/lib/date-picker/src/panel/use-calendar.d.ts +1 -0
  76. package/lib/date-picker/src/panel/use-calendar.js +9 -4
  77. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +1 -0
  78. package/lib/date-picker/src/panel/use-dual-calendar.js +17 -13
  79. package/lib/date-picker/src/panel/use-panel-common.d.ts +1 -0
  80. package/lib/date-picker/src/panel/use-panel-common.js +1 -0
  81. package/lib/date-picker/src/utils.d.ts +4 -4
  82. package/lib/date-picker/src/utils.js +4 -4
  83. package/lib/date-picker-v2/src/panel/CalendarPanel.d.ts +0 -1
  84. package/lib/date-picker-v2/src/panel/CalendarPanel.js +6 -4
  85. package/lib/date-picker-v2/src/panel/CalendarRangePanel.d.ts +0 -1
  86. package/lib/date-picker-v2/src/panel/CalendarRangePanel.js +6 -4
  87. package/lib/date-picker-v2/src/utils.d.ts +1 -1
  88. package/lib/date-picker-v2/src/utils.js +1 -1
  89. package/lib/dialog/src/DialogProvider.js +3 -2
  90. package/lib/dynamic-input/src/DynamicInput.js +8 -6
  91. package/lib/form/src/FormItem.js +5 -3
  92. package/lib/grid/src/Grid.js +8 -1
  93. package/lib/header/src/HeaderNavigation.d.ts +3 -3292
  94. package/lib/header/src/HeaderNavigation.js +2 -1
  95. package/lib/heatmap/src/Heatmap.js +4 -3
  96. package/lib/image/src/Image.js +2 -3
  97. package/lib/image/src/ImageGroup.d.ts +1 -1
  98. package/lib/image/src/ImageGroup.js +4 -5
  99. package/lib/menu/src/Menu.js +1 -2
  100. package/lib/message/src/MessageProvider.js +3 -2
  101. package/lib/modal/src/ModalProvider.js +3 -2
  102. package/lib/notification/src/NotificationProvider.js +3 -2
  103. package/lib/time/src/Time.d.ts +3 -0
  104. package/lib/time/src/Time.js +3 -1
  105. package/lib/time-picker/src/Panel.js +8 -1
  106. package/lib/upload/src/Upload.js +9 -3
  107. package/lib/version.d.ts +1 -1
  108. package/lib/version.js +1 -1
  109. package/package.json +30 -30
  110. package/web-types.json +32 -4
@@ -1,10 +1,6 @@
1
- import type { ComponentPublicInstance, CSSProperties, PropType } from 'vue';
1
+ import type { DefineComponent, ExtractPropTypes, PropType } from 'vue';
2
2
  import type { MaybeArray } from '../../_utils';
3
3
  import type { HeaderMenuOption, HeaderMenuPlacement, HeaderMenuTabsProps } from './interface';
4
- interface InternalMenuItem {
5
- key: string | number;
6
- option: HeaderMenuOption;
7
- }
8
4
  export declare const headerNavigationProps: {
9
5
  readonly menuOptions: {
10
6
  readonly type: PropType<HeaderMenuOption[]>;
@@ -47,3291 +43,6 @@ export declare const headerNavigationProps: {
47
43
  readonly onUpdateMenuValue: PropType<MaybeArray<(value: string | number | null) => void>>;
48
44
  readonly onUpdateActiveMenuKey: PropType<(value: string | number | null) => void>;
49
45
  };
50
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
51
- readonly menuOptions: {
52
- readonly type: PropType<HeaderMenuOption[]>;
53
- readonly default: () => never[];
54
- };
55
- readonly menuPlacement: {
56
- readonly type: PropType<HeaderMenuPlacement>;
57
- readonly default: "horizontal";
58
- };
59
- readonly menuTrigger: {
60
- readonly type: PropType<"click" | "hover">;
61
- readonly default: "hover";
62
- };
63
- readonly menuValue: PropType<string | number | null>;
64
- readonly menuTabsProps: {
65
- readonly type: PropType<HeaderMenuTabsProps>;
66
- readonly default: () => {};
67
- };
68
- readonly menuCardMinColumnWidth: {
69
- readonly type: PropType<string | number>;
70
- readonly default: 220;
71
- };
72
- readonly mergedClsPrefix: {
73
- readonly type: PropType<string>;
74
- readonly required: true;
75
- };
76
- readonly menuPaneClass: {
77
- readonly type: StringConstructor;
78
- readonly required: true;
79
- };
80
- readonly menuPaneWrapperClass: {
81
- readonly type: StringConstructor;
82
- readonly required: true;
83
- };
84
- readonly activeMenuKey: {
85
- readonly type: PropType<string | number | null>;
86
- readonly default: null;
87
- };
88
- readonly 'onUpdate:menuValue': PropType<MaybeArray<(value: string | number | null) => void>>;
89
- readonly onUpdateMenuValue: PropType<MaybeArray<(value: string | number | null) => void>>;
90
- readonly onUpdateActiveMenuKey: PropType<(value: string | number | null) => void>;
91
- }>, {
92
- normalizedMenuItems: import("vue").ComputedRef<InternalMenuItem[]>;
93
- handleMenuValueUpdate: (value: string | number | null) => void;
94
- setNavRef: (ref: Element | ComponentPublicInstance | null, refs: Record<string, any>) => void;
95
- navRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
96
- setTabRef: (key: string | number) => (el: Element | ComponentPublicInstance | null) => void;
97
- indicatorStyle: import("vue").Ref<{
98
- [x: `--${string}`]: string | number | undefined;
99
- accentColor?: import("csstype").Property.AccentColor | undefined;
100
- alignContent?: import("csstype").Property.AlignContent | undefined;
101
- alignItems?: import("csstype").Property.AlignItems | undefined;
102
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
103
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
104
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
105
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
106
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
107
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
108
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
109
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
110
- animationName?: import("csstype").Property.AnimationName | undefined;
111
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
112
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
113
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
114
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
115
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
116
- appearance?: import("csstype").Property.Appearance | undefined;
117
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
118
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
119
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
120
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
121
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
122
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
123
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
124
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
125
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
126
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
127
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
128
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
129
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
130
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
131
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
132
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
133
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
134
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
135
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
136
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
137
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
138
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
139
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
140
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
141
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
142
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
143
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
144
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
145
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
146
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
147
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
148
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
149
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
150
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
151
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
152
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
153
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
154
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
155
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
156
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
157
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
158
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
159
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
160
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
161
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
162
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
163
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
164
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
165
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
166
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
167
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
168
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
169
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
170
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
171
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
172
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
173
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
174
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
175
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
176
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
177
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
178
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
179
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
180
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
181
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
182
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
183
- breakInside?: import("csstype").Property.BreakInside | undefined;
184
- captionSide?: import("csstype").Property.CaptionSide | undefined;
185
- caretColor?: import("csstype").Property.CaretColor | undefined;
186
- caretShape?: import("csstype").Property.CaretShape | undefined;
187
- clear?: import("csstype").Property.Clear | undefined;
188
- clipPath?: import("csstype").Property.ClipPath | undefined;
189
- color?: import("csstype").Property.Color | undefined;
190
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
191
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
192
- columnCount?: import("csstype").Property.ColumnCount | undefined;
193
- columnFill?: import("csstype").Property.ColumnFill | undefined;
194
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
195
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
196
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
197
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
198
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
199
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
200
- contain?: import("csstype").Property.Contain | undefined;
201
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
202
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
203
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
204
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
205
- containerName?: import("csstype").Property.ContainerName | undefined;
206
- containerType?: import("csstype").Property.ContainerType | undefined;
207
- content?: import("csstype").Property.Content | undefined;
208
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
209
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
210
- counterReset?: import("csstype").Property.CounterReset | undefined;
211
- counterSet?: import("csstype").Property.CounterSet | undefined;
212
- cursor?: import("csstype").Property.Cursor | undefined;
213
- direction?: import("csstype").Property.Direction | undefined;
214
- display?: import("csstype").Property.Display | undefined;
215
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
216
- filter?: import("csstype").Property.Filter | undefined;
217
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
218
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
219
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
220
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
221
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
222
- float?: import("csstype").Property.Float | undefined;
223
- fontFamily?: import("csstype").Property.FontFamily | undefined;
224
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
225
- fontKerning?: import("csstype").Property.FontKerning | undefined;
226
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
227
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
228
- fontPalette?: import("csstype").Property.FontPalette | undefined;
229
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
230
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
231
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
232
- fontStretch?: import("csstype").Property.FontStretch | undefined;
233
- fontStyle?: import("csstype").Property.FontStyle | undefined;
234
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
235
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
236
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
237
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
238
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
239
- fontVariant?: import("csstype").Property.FontVariant | undefined;
240
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
241
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
242
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
243
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
244
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
245
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
246
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
247
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
248
- fontWeight?: import("csstype").Property.FontWeight | undefined;
249
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
250
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
251
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
252
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
253
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
254
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
255
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
256
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
257
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
258
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
259
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
260
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
261
- height?: import("csstype").Property.Height<string | number> | undefined;
262
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
263
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
264
- hyphens?: import("csstype").Property.Hyphens | undefined;
265
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
266
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
267
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
268
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
269
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
270
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
271
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
272
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
273
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
274
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
275
- isolation?: import("csstype").Property.Isolation | undefined;
276
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
277
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
278
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
279
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
280
- left?: import("csstype").Property.Left<string | number> | undefined;
281
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
282
- lineBreak?: import("csstype").Property.LineBreak | undefined;
283
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
284
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
285
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
286
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
287
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
288
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
289
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
290
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
291
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
292
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
293
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
294
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
295
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
296
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
297
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
298
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
299
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
300
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
301
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
302
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
303
- maskClip?: import("csstype").Property.MaskClip | undefined;
304
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
305
- maskImage?: import("csstype").Property.MaskImage | undefined;
306
- maskMode?: import("csstype").Property.MaskMode | undefined;
307
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
308
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
309
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
310
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
311
- maskType?: import("csstype").Property.MaskType | undefined;
312
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
313
- mathDepth?: import("csstype").Property.MathDepth | undefined;
314
- mathShift?: import("csstype").Property.MathShift | undefined;
315
- mathStyle?: import("csstype").Property.MathStyle | undefined;
316
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
317
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
318
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
319
- maxLines?: import("csstype").Property.MaxLines | undefined;
320
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
321
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
322
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
323
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
324
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
325
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
326
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
327
- motionPath?: import("csstype").Property.OffsetPath | undefined;
328
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
329
- objectFit?: import("csstype").Property.ObjectFit | undefined;
330
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
331
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
332
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
333
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
334
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
335
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
336
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
337
- opacity?: import("csstype").Property.Opacity | undefined;
338
- order?: import("csstype").Property.Order | undefined;
339
- orphans?: import("csstype").Property.Orphans | undefined;
340
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
341
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
342
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
343
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
344
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
345
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
346
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
347
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
348
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
349
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
350
- overflowX?: import("csstype").Property.OverflowX | undefined;
351
- overflowY?: import("csstype").Property.OverflowY | undefined;
352
- overlay?: import("csstype").Property.Overlay | undefined;
353
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
354
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
355
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
356
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
357
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
358
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
359
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
360
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
361
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
362
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
363
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
364
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
365
- page?: import("csstype").Property.Page | undefined;
366
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
367
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
368
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
369
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
370
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
371
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
372
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
373
- position?: import("csstype").Property.Position | undefined;
374
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
375
- quotes?: import("csstype").Property.Quotes | undefined;
376
- resize?: import("csstype").Property.Resize | undefined;
377
- right?: import("csstype").Property.Right<string | number> | undefined;
378
- rotate?: import("csstype").Property.Rotate | undefined;
379
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
380
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
381
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
382
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
383
- scale?: import("csstype").Property.Scale | undefined;
384
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
385
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
386
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
387
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
388
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
389
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
390
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
391
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
392
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
393
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
394
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
395
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
396
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
397
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
398
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
399
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
400
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
401
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
402
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
403
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
404
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
405
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
406
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
407
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
408
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
409
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
410
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
411
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
412
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
413
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
414
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
415
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
416
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
417
- tableLayout?: import("csstype").Property.TableLayout | undefined;
418
- textAlign?: import("csstype").Property.TextAlign | undefined;
419
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
420
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
421
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
422
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
423
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
424
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
425
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
426
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
427
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
428
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
429
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
430
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
431
- textJustify?: import("csstype").Property.TextJustify | undefined;
432
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
433
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
434
- textRendering?: import("csstype").Property.TextRendering | undefined;
435
- textShadow?: import("csstype").Property.TextShadow | undefined;
436
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
437
- textTransform?: import("csstype").Property.TextTransform | undefined;
438
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
439
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
440
- textWrap?: import("csstype").Property.TextWrap | undefined;
441
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
442
- top?: import("csstype").Property.Top<string | number> | undefined;
443
- touchAction?: import("csstype").Property.TouchAction | undefined;
444
- transform?: import("csstype").Property.Transform | undefined;
445
- transformBox?: import("csstype").Property.TransformBox | undefined;
446
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
447
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
448
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
449
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
450
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
451
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
452
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
453
- translate?: import("csstype").Property.Translate<string | number> | undefined;
454
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
455
- userSelect?: import("csstype").Property.UserSelect | undefined;
456
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
457
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
458
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
459
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
460
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
461
- visibility?: import("csstype").Property.Visibility | undefined;
462
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
463
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
464
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
465
- widows?: import("csstype").Property.Widows | undefined;
466
- width?: import("csstype").Property.Width<string | number> | undefined;
467
- willChange?: import("csstype").Property.WillChange | undefined;
468
- wordBreak?: import("csstype").Property.WordBreak | undefined;
469
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
470
- wordWrap?: import("csstype").Property.WordWrap | undefined;
471
- writingMode?: import("csstype").Property.WritingMode | undefined;
472
- zIndex?: import("csstype").Property.ZIndex | undefined;
473
- zoom?: import("csstype").Property.Zoom | undefined;
474
- all?: import("csstype").Globals | undefined;
475
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
476
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
477
- background?: import("csstype").Property.Background<string | number> | undefined;
478
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
479
- border?: import("csstype").Property.Border<string | number> | undefined;
480
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
481
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
482
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
483
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
484
- borderColor?: import("csstype").Property.BorderColor | undefined;
485
- borderImage?: import("csstype").Property.BorderImage | undefined;
486
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
487
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
488
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
489
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
490
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
491
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
492
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
493
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
494
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
495
- caret?: import("csstype").Property.Caret | undefined;
496
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
497
- columns?: import("csstype").Property.Columns<string | number> | undefined;
498
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
499
- container?: import("csstype").Property.Container | undefined;
500
- flex?: import("csstype").Property.Flex<string | number> | undefined;
501
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
502
- font?: import("csstype").Property.Font | undefined;
503
- gap?: import("csstype").Property.Gap<string | number> | undefined;
504
- grid?: import("csstype").Property.Grid | undefined;
505
- gridArea?: import("csstype").Property.GridArea | undefined;
506
- gridColumn?: import("csstype").Property.GridColumn | undefined;
507
- gridRow?: import("csstype").Property.GridRow | undefined;
508
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
509
- inset?: import("csstype").Property.Inset<string | number> | undefined;
510
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
511
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
512
- lineClamp?: import("csstype").Property.LineClamp | undefined;
513
- listStyle?: import("csstype").Property.ListStyle | undefined;
514
- margin?: import("csstype").Property.Margin<string | number> | undefined;
515
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
516
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
517
- mask?: import("csstype").Property.Mask<string | number> | undefined;
518
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
519
- motion?: import("csstype").Property.Offset<string | number> | undefined;
520
- offset?: import("csstype").Property.Offset<string | number> | undefined;
521
- outline?: import("csstype").Property.Outline<string | number> | undefined;
522
- overflow?: import("csstype").Property.Overflow | undefined;
523
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
524
- padding?: import("csstype").Property.Padding<string | number> | undefined;
525
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
526
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
527
- placeContent?: import("csstype").Property.PlaceContent | undefined;
528
- placeItems?: import("csstype").Property.PlaceItems | undefined;
529
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
530
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
531
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
532
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
533
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
534
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
535
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
536
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
537
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
538
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
539
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
540
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
541
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
542
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
543
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
544
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
545
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
546
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
547
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
548
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
549
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
550
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
551
- MozBinding?: import("csstype").Property.MozBinding | undefined;
552
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
553
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
554
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
555
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
556
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
557
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
558
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
559
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
560
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
561
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
562
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
563
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
564
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
565
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
566
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
567
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
568
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
569
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
570
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
571
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
572
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
573
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
574
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
575
- MozOrient?: import("csstype").Property.MozOrient | undefined;
576
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
577
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
578
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
579
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
580
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
581
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
582
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
583
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
584
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
585
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
586
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
587
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
588
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
589
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
590
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
591
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
592
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
593
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
594
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
595
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
596
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
597
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
598
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
599
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
600
- msFilter?: import("csstype").Property.MsFilter | undefined;
601
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
602
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
603
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
604
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
605
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
606
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
607
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
608
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
609
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
610
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
611
- msHyphens?: import("csstype").Property.Hyphens | undefined;
612
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
613
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
614
- msOrder?: import("csstype").Property.Order | undefined;
615
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
616
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
617
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
618
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
619
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
620
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
621
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
622
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
623
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
624
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
625
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
626
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
627
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
628
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
629
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
630
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
631
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
632
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
633
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
634
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
635
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
636
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
637
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
638
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
639
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
640
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
641
- msTransform?: import("csstype").Property.Transform | undefined;
642
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
643
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
644
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
645
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
646
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
647
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
648
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
649
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
650
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
651
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
652
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
653
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
654
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
655
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
656
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
657
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
658
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
659
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
660
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
661
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
662
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
663
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
664
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
665
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
666
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
667
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
668
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
669
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
670
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
671
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
672
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
673
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
674
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
675
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
676
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
677
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
678
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
679
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
680
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
681
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
682
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
683
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
684
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
685
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
686
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
687
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
688
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
689
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
690
- WebkitFilter?: import("csstype").Property.Filter | undefined;
691
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
692
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
693
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
694
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
695
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
696
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
697
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
698
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
699
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
700
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
701
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
702
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
703
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
704
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
705
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
706
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
707
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
708
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
709
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
710
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
711
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
712
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
713
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
714
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
715
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
716
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
717
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
718
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
719
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
720
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
721
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
722
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
723
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
724
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
725
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
726
- WebkitOrder?: import("csstype").Property.Order | undefined;
727
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
728
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
729
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
730
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
731
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
732
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
733
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
734
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
735
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
736
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
737
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
738
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
739
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
740
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
741
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
742
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
743
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
744
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
745
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
746
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
747
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
748
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
749
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
750
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
751
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
752
- WebkitTransform?: import("csstype").Property.Transform | undefined;
753
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
754
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
755
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
756
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
757
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
758
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
759
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
760
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
761
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
762
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
763
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
764
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
765
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
766
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
767
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
768
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
769
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
770
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
771
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
772
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
773
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
774
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
775
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
776
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
777
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
778
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
779
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
780
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
781
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
782
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
783
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
784
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
785
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
786
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
787
- azimuth?: import("csstype").Property.Azimuth | undefined;
788
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
789
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
790
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
791
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
792
- boxLines?: import("csstype").Property.BoxLines | undefined;
793
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
794
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
795
- boxPack?: import("csstype").Property.BoxPack | undefined;
796
- clip?: import("csstype").Property.Clip | undefined;
797
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
798
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
799
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
800
- imeMode?: import("csstype").Property.ImeMode | undefined;
801
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
802
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
803
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
804
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
805
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
806
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
807
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
808
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
809
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
810
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
811
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
812
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
813
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
814
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
815
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
816
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
817
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
818
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
819
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
820
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
821
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
822
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
823
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
824
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
825
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
826
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
827
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
828
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
829
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
830
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
831
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
832
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
833
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
834
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
835
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
836
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
837
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
838
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
839
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
840
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
841
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
842
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
843
- MozOpacity?: import("csstype").Property.Opacity | undefined;
844
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
845
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
846
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
847
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
848
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
849
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
850
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
851
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
852
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
853
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
854
- MozTransform?: import("csstype").Property.Transform | undefined;
855
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
856
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
857
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
858
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
859
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
860
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
861
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
862
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
863
- msImeMode?: import("csstype").Property.ImeMode | undefined;
864
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
865
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
866
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
867
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
868
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
869
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
870
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
871
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
872
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
873
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
874
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
875
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
876
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
877
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
878
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
879
- OTransform?: import("csstype").Property.Transform | undefined;
880
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
881
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
882
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
883
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
884
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
885
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
886
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
887
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
888
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
889
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
890
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
891
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
892
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
893
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
894
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
895
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
896
- clipRule?: import("csstype").Property.ClipRule | undefined;
897
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
898
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
899
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
900
- fill?: import("csstype").Property.Fill | undefined;
901
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
902
- fillRule?: import("csstype").Property.FillRule | undefined;
903
- floodColor?: import("csstype").Property.FloodColor | undefined;
904
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
905
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
906
- lightingColor?: import("csstype").Property.LightingColor | undefined;
907
- marker?: import("csstype").Property.Marker | undefined;
908
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
909
- markerMid?: import("csstype").Property.MarkerMid | undefined;
910
- markerStart?: import("csstype").Property.MarkerStart | undefined;
911
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
912
- stopColor?: import("csstype").Property.StopColor | undefined;
913
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
914
- stroke?: import("csstype").Property.Stroke | undefined;
915
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
916
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
917
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
918
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
919
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
920
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
921
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
922
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
923
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
924
- "accent-color"?: import("csstype").Property.AccentColor | undefined;
925
- "align-content"?: import("csstype").Property.AlignContent | undefined;
926
- "align-items"?: import("csstype").Property.AlignItems | undefined;
927
- "align-self"?: import("csstype").Property.AlignSelf | undefined;
928
- "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
929
- "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
930
- "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
931
- "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
932
- "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
933
- "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
934
- "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
935
- "animation-name"?: import("csstype").Property.AnimationName | undefined;
936
- "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
937
- "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
938
- "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
939
- "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
940
- "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
941
- "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
942
- "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
943
- "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
944
- "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
945
- "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
946
- "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
947
- "background-color"?: import("csstype").Property.BackgroundColor | undefined;
948
- "background-image"?: import("csstype").Property.BackgroundImage | undefined;
949
- "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
950
- "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
951
- "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
952
- "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
953
- "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
954
- "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
955
- "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
956
- "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
957
- "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
958
- "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
959
- "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
960
- "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
961
- "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
962
- "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
963
- "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
964
- "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
965
- "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
966
- "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
967
- "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
968
- "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
969
- "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
970
- "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
971
- "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
972
- "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
973
- "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
974
- "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
975
- "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
976
- "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
977
- "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
978
- "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
979
- "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
980
- "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
981
- "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
982
- "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
983
- "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
984
- "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
985
- "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
986
- "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
987
- "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
988
- "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
989
- "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
990
- "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
991
- "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
992
- "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
993
- "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
994
- "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
995
- "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
996
- "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
997
- "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
998
- "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
999
- "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
1000
- "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1001
- "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1002
- "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1003
- "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1004
- "break-after"?: import("csstype").Property.BreakAfter | undefined;
1005
- "break-before"?: import("csstype").Property.BreakBefore | undefined;
1006
- "break-inside"?: import("csstype").Property.BreakInside | undefined;
1007
- "caption-side"?: import("csstype").Property.CaptionSide | undefined;
1008
- "caret-color"?: import("csstype").Property.CaretColor | undefined;
1009
- "caret-shape"?: import("csstype").Property.CaretShape | undefined;
1010
- "clip-path"?: import("csstype").Property.ClipPath | undefined;
1011
- "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1012
- "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
1013
- "column-count"?: import("csstype").Property.ColumnCount | undefined;
1014
- "column-fill"?: import("csstype").Property.ColumnFill | undefined;
1015
- "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
1016
- "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1017
- "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1018
- "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1019
- "column-span"?: import("csstype").Property.ColumnSpan | undefined;
1020
- "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1021
- "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1022
- "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1023
- "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1024
- "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1025
- "container-name"?: import("csstype").Property.ContainerName | undefined;
1026
- "container-type"?: import("csstype").Property.ContainerType | undefined;
1027
- "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
1028
- "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
1029
- "counter-reset"?: import("csstype").Property.CounterReset | undefined;
1030
- "counter-set"?: import("csstype").Property.CounterSet | undefined;
1031
- "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
1032
- "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1033
- "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1034
- "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1035
- "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1036
- "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1037
- "font-family"?: import("csstype").Property.FontFamily | undefined;
1038
- "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1039
- "font-kerning"?: import("csstype").Property.FontKerning | undefined;
1040
- "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1041
- "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
1042
- "font-palette"?: import("csstype").Property.FontPalette | undefined;
1043
- "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
1044
- "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
1045
- "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1046
- "font-stretch"?: import("csstype").Property.FontStretch | undefined;
1047
- "font-style"?: import("csstype").Property.FontStyle | undefined;
1048
- "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
1049
- "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
1050
- "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1051
- "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
1052
- "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
1053
- "font-variant"?: import("csstype").Property.FontVariant | undefined;
1054
- "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
1055
- "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
1056
- "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
1057
- "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
1058
- "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1059
- "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
1060
- "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
1061
- "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
1062
- "font-weight"?: import("csstype").Property.FontWeight | undefined;
1063
- "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
1064
- "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1065
- "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
1066
- "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1067
- "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
1068
- "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
1069
- "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
1070
- "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
1071
- "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
1072
- "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1073
- "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1074
- "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
1075
- "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1076
- "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
1077
- "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
1078
- "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
1079
- "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
1080
- "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1081
- "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
1082
- "input-security"?: import("csstype").Property.InputSecurity | undefined;
1083
- "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1084
- "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1085
- "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1086
- "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1087
- "justify-content"?: import("csstype").Property.JustifyContent | undefined;
1088
- "justify-items"?: import("csstype").Property.JustifyItems | undefined;
1089
- "justify-self"?: import("csstype").Property.JustifySelf | undefined;
1090
- "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
1091
- "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1092
- "line-break"?: import("csstype").Property.LineBreak | undefined;
1093
- "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
1094
- "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1095
- "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
1096
- "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
1097
- "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
1098
- "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1099
- "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1100
- "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
1101
- "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1102
- "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1103
- "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
1104
- "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
1105
- "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
1106
- "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
1107
- "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
1108
- "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1109
- "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1110
- "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1111
- "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
1112
- "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1113
- "mask-clip"?: import("csstype").Property.MaskClip | undefined;
1114
- "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
1115
- "mask-image"?: import("csstype").Property.MaskImage | undefined;
1116
- "mask-mode"?: import("csstype").Property.MaskMode | undefined;
1117
- "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
1118
- "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
1119
- "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
1120
- "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
1121
- "mask-type"?: import("csstype").Property.MaskType | undefined;
1122
- "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
1123
- "math-depth"?: import("csstype").Property.MathDepth | undefined;
1124
- "math-shift"?: import("csstype").Property.MathShift | undefined;
1125
- "math-style"?: import("csstype").Property.MathStyle | undefined;
1126
- "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1127
- "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
1128
- "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1129
- "max-lines"?: import("csstype").Property.MaxLines | undefined;
1130
- "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
1131
- "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1132
- "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
1133
- "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1134
- "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
1135
- "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
1136
- "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1137
- "motion-path"?: import("csstype").Property.OffsetPath | undefined;
1138
- "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1139
- "object-fit"?: import("csstype").Property.ObjectFit | undefined;
1140
- "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1141
- "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1142
- "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1143
- "offset-path"?: import("csstype").Property.OffsetPath | undefined;
1144
- "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1145
- "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
1146
- "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1147
- "outline-color"?: import("csstype").Property.OutlineColor | undefined;
1148
- "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1149
- "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1150
- "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1151
- "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
1152
- "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
1153
- "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
1154
- "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1155
- "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
1156
- "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
1157
- "overflow-x"?: import("csstype").Property.OverflowX | undefined;
1158
- "overflow-y"?: import("csstype").Property.OverflowY | undefined;
1159
- "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1160
- "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1161
- "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
1162
- "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
1163
- "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1164
- "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1165
- "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1166
- "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1167
- "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1168
- "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1169
- "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
1170
- "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
1171
- "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
1172
- "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
1173
- "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
1174
- "paint-order"?: import("csstype").Property.PaintOrder | undefined;
1175
- "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1176
- "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
1177
- "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1178
- "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
1179
- "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
1180
- "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
1181
- "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1182
- "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
1183
- "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1184
- "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1185
- "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1186
- "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1187
- "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1188
- "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1189
- "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1190
- "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1191
- "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1192
- "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1193
- "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1194
- "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1195
- "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1196
- "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1197
- "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1198
- "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1199
- "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
1200
- "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1201
- "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1202
- "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1203
- "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1204
- "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
1205
- "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1206
- "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
1207
- "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
1208
- "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
1209
- "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
1210
- "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
1211
- "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
1212
- "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1213
- "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
1214
- "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1215
- "table-layout"?: import("csstype").Property.TableLayout | undefined;
1216
- "text-align"?: import("csstype").Property.TextAlign | undefined;
1217
- "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1218
- "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
1219
- "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1220
- "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1221
- "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1222
- "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
1223
- "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1224
- "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1225
- "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1226
- "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1227
- "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1228
- "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
1229
- "text-justify"?: import("csstype").Property.TextJustify | undefined;
1230
- "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1231
- "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1232
- "text-rendering"?: import("csstype").Property.TextRendering | undefined;
1233
- "text-shadow"?: import("csstype").Property.TextShadow | undefined;
1234
- "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1235
- "text-transform"?: import("csstype").Property.TextTransform | undefined;
1236
- "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1237
- "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1238
- "text-wrap"?: import("csstype").Property.TextWrap | undefined;
1239
- "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
1240
- "touch-action"?: import("csstype").Property.TouchAction | undefined;
1241
- "transform-box"?: import("csstype").Property.TransformBox | undefined;
1242
- "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1243
- "transform-style"?: import("csstype").Property.TransformStyle | undefined;
1244
- "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
1245
- "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1246
- "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1247
- "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1248
- "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1249
- "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
1250
- "user-select"?: import("csstype").Property.UserSelect | undefined;
1251
- "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1252
- "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
1253
- "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1254
- "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
1255
- "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
1256
- "white-space"?: import("csstype").Property.WhiteSpace | undefined;
1257
- "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1258
- "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
1259
- "will-change"?: import("csstype").Property.WillChange | undefined;
1260
- "word-break"?: import("csstype").Property.WordBreak | undefined;
1261
- "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
1262
- "word-wrap"?: import("csstype").Property.WordWrap | undefined;
1263
- "writing-mode"?: import("csstype").Property.WritingMode | undefined;
1264
- "z-index"?: import("csstype").Property.ZIndex | undefined;
1265
- "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
1266
- "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1267
- "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
1268
- "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1269
- "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1270
- "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
1271
- "border-color"?: import("csstype").Property.BorderColor | undefined;
1272
- "border-image"?: import("csstype").Property.BorderImage | undefined;
1273
- "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
1274
- "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1275
- "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1276
- "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
1277
- "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1278
- "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
1279
- "border-style"?: import("csstype").Property.BorderStyle | undefined;
1280
- "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
1281
- "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
1282
- "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1283
- "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1284
- "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1285
- "grid-area"?: import("csstype").Property.GridArea | undefined;
1286
- "grid-column"?: import("csstype").Property.GridColumn | undefined;
1287
- "grid-row"?: import("csstype").Property.GridRow | undefined;
1288
- "grid-template"?: import("csstype").Property.GridTemplate | undefined;
1289
- "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1290
- "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1291
- "line-clamp"?: import("csstype").Property.LineClamp | undefined;
1292
- "list-style"?: import("csstype").Property.ListStyle | undefined;
1293
- "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
1294
- "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
1295
- "mask-border"?: import("csstype").Property.MaskBorder | undefined;
1296
- "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
1297
- "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1298
- "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
1299
- "place-content"?: import("csstype").Property.PlaceContent | undefined;
1300
- "place-items"?: import("csstype").Property.PlaceItems | undefined;
1301
- "place-self"?: import("csstype").Property.PlaceSelf | undefined;
1302
- "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1303
- "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1304
- "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1305
- "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1306
- "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1307
- "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1308
- "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1309
- "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
1310
- "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
1311
- "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1312
- "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
1313
- "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1314
- "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1315
- "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1316
- "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1317
- "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1318
- "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
1319
- "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1320
- "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1321
- "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
1322
- "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
1323
- "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
1324
- "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1325
- "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1326
- "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1327
- "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
1328
- "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
1329
- "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1330
- "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1331
- "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
1332
- "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1333
- "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
1334
- "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1335
- "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1336
- "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1337
- "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1338
- "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1339
- "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
1340
- "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1341
- "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1342
- "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
1343
- "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
1344
- "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1345
- "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1346
- "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
1347
- "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1348
- "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1349
- "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1350
- "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1351
- "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1352
- "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1353
- "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1354
- "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
1355
- "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1356
- "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
1357
- "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1358
- "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
1359
- "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
1360
- "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
1361
- "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
1362
- "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
1363
- "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
1364
- "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
1365
- "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
1366
- "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1367
- "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1368
- "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1369
- "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
1370
- "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
1371
- "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
1372
- "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1373
- "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
1374
- "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
1375
- "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
1376
- "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1377
- "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
1378
- "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
1379
- "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1380
- "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1381
- "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1382
- "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
1383
- "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
1384
- "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
1385
- "-ms-order"?: import("csstype").Property.Order | undefined;
1386
- "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
1387
- "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
1388
- "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
1389
- "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
1390
- "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1391
- "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1392
- "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1393
- "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1394
- "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
1395
- "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1396
- "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1397
- "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
1398
- "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
1399
- "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1400
- "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1401
- "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1402
- "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1403
- "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1404
- "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1405
- "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1406
- "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1407
- "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
1408
- "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
1409
- "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1410
- "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
1411
- "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
1412
- "-ms-transform"?: import("csstype").Property.Transform | undefined;
1413
- "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1414
- "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1415
- "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1416
- "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1417
- "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1418
- "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
1419
- "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
1420
- "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
1421
- "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1422
- "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
1423
- "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1424
- "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
1425
- "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
1426
- "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
1427
- "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1428
- "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1429
- "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1430
- "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1431
- "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1432
- "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
1433
- "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1434
- "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1435
- "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
1436
- "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1437
- "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1438
- "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1439
- "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1440
- "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1441
- "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1442
- "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1443
- "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1444
- "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1445
- "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1446
- "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1447
- "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1448
- "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1449
- "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1450
- "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1451
- "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1452
- "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1453
- "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
1454
- "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
1455
- "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1456
- "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1457
- "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1458
- "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1459
- "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
1460
- "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1461
- "-webkit-filter"?: import("csstype").Property.Filter | undefined;
1462
- "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1463
- "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1464
- "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1465
- "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1466
- "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1467
- "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1468
- "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
1469
- "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1470
- "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1471
- "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1472
- "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
1473
- "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1474
- "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
1475
- "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
1476
- "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
1477
- "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1478
- "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1479
- "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
1480
- "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1481
- "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1482
- "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1483
- "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
1484
- "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1485
- "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
1486
- "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
1487
- "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
1488
- "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
1489
- "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1490
- "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1491
- "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1492
- "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
1493
- "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1494
- "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1495
- "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1496
- "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1497
- "-webkit-order"?: import("csstype").Property.Order | undefined;
1498
- "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1499
- "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1500
- "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1501
- "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1502
- "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1503
- "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1504
- "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1505
- "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1506
- "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1507
- "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1508
- "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
1509
- "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1510
- "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1511
- "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1512
- "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1513
- "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1514
- "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1515
- "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1516
- "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
1517
- "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1518
- "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1519
- "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1520
- "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1521
- "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1522
- "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
1523
- "-webkit-transform"?: import("csstype").Property.Transform | undefined;
1524
- "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1525
- "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1526
- "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1527
- "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1528
- "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1529
- "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1530
- "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
1531
- "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
1532
- "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1533
- "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1534
- "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
1535
- "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1536
- "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1537
- "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1538
- "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
1539
- "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
1540
- "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1541
- "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
1542
- "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
1543
- "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
1544
- "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1545
- "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1546
- "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1547
- "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
1548
- "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1549
- "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1550
- "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1551
- "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1552
- "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1553
- "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
1554
- "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
1555
- "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1556
- "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1557
- "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1558
- "box-align"?: import("csstype").Property.BoxAlign | undefined;
1559
- "box-direction"?: import("csstype").Property.BoxDirection | undefined;
1560
- "box-flex"?: import("csstype").Property.BoxFlex | undefined;
1561
- "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1562
- "box-lines"?: import("csstype").Property.BoxLines | undefined;
1563
- "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1564
- "box-orient"?: import("csstype").Property.BoxOrient | undefined;
1565
- "box-pack"?: import("csstype").Property.BoxPack | undefined;
1566
- "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1567
- "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
1568
- "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
1569
- "ime-mode"?: import("csstype").Property.ImeMode | undefined;
1570
- "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1571
- "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1572
- "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1573
- "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1574
- "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1575
- "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1576
- "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1577
- "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1578
- "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
1579
- "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
1580
- "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
1581
- "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
1582
- "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
1583
- "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1584
- "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1585
- "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1586
- "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
1587
- "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1588
- "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1589
- "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
1590
- "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
1591
- "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
1592
- "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
1593
- "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1594
- "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1595
- "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
1596
- "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1597
- "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1598
- "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1599
- "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1600
- "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1601
- "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1602
- "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1603
- "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
1604
- "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1605
- "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1606
- "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1607
- "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1608
- "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
1609
- "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1610
- "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
1611
- "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1612
- "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
1613
- "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
1614
- "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
1615
- "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1616
- "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1617
- "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1618
- "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1619
- "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1620
- "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1621
- "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1622
- "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1623
- "-moz-transform"?: import("csstype").Property.Transform | undefined;
1624
- "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1625
- "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1626
- "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1627
- "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1628
- "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1629
- "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1630
- "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1631
- "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
1632
- "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
1633
- "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1634
- "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1635
- "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1636
- "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1637
- "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1638
- "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1639
- "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
1640
- "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1641
- "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1642
- "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1643
- "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
1644
- "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
1645
- "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1646
- "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1647
- "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1648
- "-o-transform"?: import("csstype").Property.Transform | undefined;
1649
- "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1650
- "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1651
- "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1652
- "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1653
- "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1654
- "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1655
- "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
1656
- "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1657
- "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1658
- "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1659
- "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
1660
- "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1661
- "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1662
- "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
1663
- "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
1664
- "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
1665
- "clip-rule"?: import("csstype").Property.ClipRule | undefined;
1666
- "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
1667
- "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
1668
- "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
1669
- "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
1670
- "fill-rule"?: import("csstype").Property.FillRule | undefined;
1671
- "flood-color"?: import("csstype").Property.FloodColor | undefined;
1672
- "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
1673
- "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
1674
- "lighting-color"?: import("csstype").Property.LightingColor | undefined;
1675
- "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
1676
- "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
1677
- "marker-start"?: import("csstype").Property.MarkerStart | undefined;
1678
- "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
1679
- "stop-color"?: import("csstype").Property.StopColor | undefined;
1680
- "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
1681
- "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1682
- "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1683
- "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
1684
- "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
1685
- "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
1686
- "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
1687
- "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1688
- "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
1689
- "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1690
- }, CSSProperties | {
1691
- [x: `--${string}`]: string | number | undefined;
1692
- accentColor?: import("csstype").Property.AccentColor | undefined;
1693
- alignContent?: import("csstype").Property.AlignContent | undefined;
1694
- alignItems?: import("csstype").Property.AlignItems | undefined;
1695
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
1696
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
1697
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1698
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1699
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1700
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1701
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1702
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1703
- animationName?: import("csstype").Property.AnimationName | undefined;
1704
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1705
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1706
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1707
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1708
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1709
- appearance?: import("csstype").Property.Appearance | undefined;
1710
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1711
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1712
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1713
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1714
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1715
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1716
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1717
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1718
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1719
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1720
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1721
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1722
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1723
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1724
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1725
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1726
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1727
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1728
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1729
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1730
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1731
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1732
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1733
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1734
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1735
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1736
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1737
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1738
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1739
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1740
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1741
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1742
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1743
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1744
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1745
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1746
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1747
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1748
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1749
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1750
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1751
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1752
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1753
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1754
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1755
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1756
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1757
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1758
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1759
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1760
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1761
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1762
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1763
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1764
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1765
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1766
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1767
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1768
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1769
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1770
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1771
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1772
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
1773
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
1774
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
1775
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
1776
- breakInside?: import("csstype").Property.BreakInside | undefined;
1777
- captionSide?: import("csstype").Property.CaptionSide | undefined;
1778
- caretColor?: import("csstype").Property.CaretColor | undefined;
1779
- caretShape?: import("csstype").Property.CaretShape | undefined;
1780
- clear?: import("csstype").Property.Clear | undefined;
1781
- clipPath?: import("csstype").Property.ClipPath | undefined;
1782
- color?: import("csstype").Property.Color | undefined;
1783
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1784
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
1785
- columnCount?: import("csstype").Property.ColumnCount | undefined;
1786
- columnFill?: import("csstype").Property.ColumnFill | undefined;
1787
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1788
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1789
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1790
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1791
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1792
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1793
- contain?: import("csstype").Property.Contain | undefined;
1794
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1795
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1796
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1797
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1798
- containerName?: import("csstype").Property.ContainerName | undefined;
1799
- containerType?: import("csstype").Property.ContainerType | undefined;
1800
- content?: import("csstype").Property.Content | undefined;
1801
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1802
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1803
- counterReset?: import("csstype").Property.CounterReset | undefined;
1804
- counterSet?: import("csstype").Property.CounterSet | undefined;
1805
- cursor?: import("csstype").Property.Cursor | undefined;
1806
- direction?: import("csstype").Property.Direction | undefined;
1807
- display?: import("csstype").Property.Display | undefined;
1808
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
1809
- filter?: import("csstype").Property.Filter | undefined;
1810
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1811
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
1812
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
1813
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
1814
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
1815
- float?: import("csstype").Property.Float | undefined;
1816
- fontFamily?: import("csstype").Property.FontFamily | undefined;
1817
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1818
- fontKerning?: import("csstype").Property.FontKerning | undefined;
1819
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1820
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1821
- fontPalette?: import("csstype").Property.FontPalette | undefined;
1822
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1823
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1824
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1825
- fontStretch?: import("csstype").Property.FontStretch | undefined;
1826
- fontStyle?: import("csstype").Property.FontStyle | undefined;
1827
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1828
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1829
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1830
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1831
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1832
- fontVariant?: import("csstype").Property.FontVariant | undefined;
1833
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1834
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1835
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1836
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1837
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1838
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1839
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1840
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1841
- fontWeight?: import("csstype").Property.FontWeight | undefined;
1842
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1843
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1844
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1845
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1846
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1847
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1848
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1849
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1850
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1851
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1852
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1853
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1854
- height?: import("csstype").Property.Height<string | number> | undefined;
1855
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1856
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1857
- hyphens?: import("csstype").Property.Hyphens | undefined;
1858
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1859
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
1860
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
1861
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
1862
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1863
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1864
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1865
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1866
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1867
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1868
- isolation?: import("csstype").Property.Isolation | undefined;
1869
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
1870
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
1871
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
1872
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1873
- left?: import("csstype").Property.Left<string | number> | undefined;
1874
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1875
- lineBreak?: import("csstype").Property.LineBreak | undefined;
1876
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1877
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1878
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1879
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1880
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
1881
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1882
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1883
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1884
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1885
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1886
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1887
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1888
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1889
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
1890
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1891
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1892
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1893
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1894
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1895
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1896
- maskClip?: import("csstype").Property.MaskClip | undefined;
1897
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
1898
- maskImage?: import("csstype").Property.MaskImage | undefined;
1899
- maskMode?: import("csstype").Property.MaskMode | undefined;
1900
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1901
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1902
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1903
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1904
- maskType?: import("csstype").Property.MaskType | undefined;
1905
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1906
- mathDepth?: import("csstype").Property.MathDepth | undefined;
1907
- mathShift?: import("csstype").Property.MathShift | undefined;
1908
- mathStyle?: import("csstype").Property.MathStyle | undefined;
1909
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1910
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1911
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1912
- maxLines?: import("csstype").Property.MaxLines | undefined;
1913
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1914
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1915
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1916
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1917
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1918
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1919
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1920
- motionPath?: import("csstype").Property.OffsetPath | undefined;
1921
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1922
- objectFit?: import("csstype").Property.ObjectFit | undefined;
1923
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1924
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1925
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1926
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
1927
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1928
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1929
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1930
- opacity?: import("csstype").Property.Opacity | undefined;
1931
- order?: import("csstype").Property.Order | undefined;
1932
- orphans?: import("csstype").Property.Orphans | undefined;
1933
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
1934
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1935
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1936
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1937
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1938
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1939
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1940
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1941
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
1942
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1943
- overflowX?: import("csstype").Property.OverflowX | undefined;
1944
- overflowY?: import("csstype").Property.OverflowY | undefined;
1945
- overlay?: import("csstype").Property.Overlay | undefined;
1946
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1947
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1948
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1949
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1950
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1951
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1952
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1953
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1954
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1955
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1956
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1957
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1958
- page?: import("csstype").Property.Page | undefined;
1959
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1960
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1961
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1962
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
1963
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1964
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1965
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1966
- position?: import("csstype").Property.Position | undefined;
1967
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1968
- quotes?: import("csstype").Property.Quotes | undefined;
1969
- resize?: import("csstype").Property.Resize | undefined;
1970
- right?: import("csstype").Property.Right<string | number> | undefined;
1971
- rotate?: import("csstype").Property.Rotate | undefined;
1972
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1973
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1974
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1975
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1976
- scale?: import("csstype").Property.Scale | undefined;
1977
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1978
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1979
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1980
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1981
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1982
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1983
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1984
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1985
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1986
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1987
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1988
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1989
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1990
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1991
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1992
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1993
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1994
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1995
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1996
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1997
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1998
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1999
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2000
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2001
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2002
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2003
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2004
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2005
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2006
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2007
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2008
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2009
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2010
- tableLayout?: import("csstype").Property.TableLayout | undefined;
2011
- textAlign?: import("csstype").Property.TextAlign | undefined;
2012
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2013
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2014
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2015
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2016
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2017
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2018
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2019
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2020
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2021
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2022
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2023
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2024
- textJustify?: import("csstype").Property.TextJustify | undefined;
2025
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
2026
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
2027
- textRendering?: import("csstype").Property.TextRendering | undefined;
2028
- textShadow?: import("csstype").Property.TextShadow | undefined;
2029
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2030
- textTransform?: import("csstype").Property.TextTransform | undefined;
2031
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2032
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2033
- textWrap?: import("csstype").Property.TextWrap | undefined;
2034
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
2035
- top?: import("csstype").Property.Top<string | number> | undefined;
2036
- touchAction?: import("csstype").Property.TouchAction | undefined;
2037
- transform?: import("csstype").Property.Transform | undefined;
2038
- transformBox?: import("csstype").Property.TransformBox | undefined;
2039
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2040
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
2041
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2042
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2043
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2044
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2045
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2046
- translate?: import("csstype").Property.Translate<string | number> | undefined;
2047
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2048
- userSelect?: import("csstype").Property.UserSelect | undefined;
2049
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2050
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2051
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2052
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2053
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2054
- visibility?: import("csstype").Property.Visibility | undefined;
2055
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2056
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2057
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2058
- widows?: import("csstype").Property.Widows | undefined;
2059
- width?: import("csstype").Property.Width<string | number> | undefined;
2060
- willChange?: import("csstype").Property.WillChange | undefined;
2061
- wordBreak?: import("csstype").Property.WordBreak | undefined;
2062
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2063
- wordWrap?: import("csstype").Property.WordWrap | undefined;
2064
- writingMode?: import("csstype").Property.WritingMode | undefined;
2065
- zIndex?: import("csstype").Property.ZIndex | undefined;
2066
- zoom?: import("csstype").Property.Zoom | undefined;
2067
- all?: import("csstype").Globals | undefined;
2068
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
2069
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2070
- background?: import("csstype").Property.Background<string | number> | undefined;
2071
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2072
- border?: import("csstype").Property.Border<string | number> | undefined;
2073
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2074
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2075
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2076
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2077
- borderColor?: import("csstype").Property.BorderColor | undefined;
2078
- borderImage?: import("csstype").Property.BorderImage | undefined;
2079
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2080
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2081
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2082
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2083
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2084
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2085
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
2086
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2087
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2088
- caret?: import("csstype").Property.Caret | undefined;
2089
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2090
- columns?: import("csstype").Property.Columns<string | number> | undefined;
2091
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2092
- container?: import("csstype").Property.Container | undefined;
2093
- flex?: import("csstype").Property.Flex<string | number> | undefined;
2094
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
2095
- font?: import("csstype").Property.Font | undefined;
2096
- gap?: import("csstype").Property.Gap<string | number> | undefined;
2097
- grid?: import("csstype").Property.Grid | undefined;
2098
- gridArea?: import("csstype").Property.GridArea | undefined;
2099
- gridColumn?: import("csstype").Property.GridColumn | undefined;
2100
- gridRow?: import("csstype").Property.GridRow | undefined;
2101
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2102
- inset?: import("csstype").Property.Inset<string | number> | undefined;
2103
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2104
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2105
- lineClamp?: import("csstype").Property.LineClamp | undefined;
2106
- listStyle?: import("csstype").Property.ListStyle | undefined;
2107
- margin?: import("csstype").Property.Margin<string | number> | undefined;
2108
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2109
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2110
- mask?: import("csstype").Property.Mask<string | number> | undefined;
2111
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
2112
- motion?: import("csstype").Property.Offset<string | number> | undefined;
2113
- offset?: import("csstype").Property.Offset<string | number> | undefined;
2114
- outline?: import("csstype").Property.Outline<string | number> | undefined;
2115
- overflow?: import("csstype").Property.Overflow | undefined;
2116
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2117
- padding?: import("csstype").Property.Padding<string | number> | undefined;
2118
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2119
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2120
- placeContent?: import("csstype").Property.PlaceContent | undefined;
2121
- placeItems?: import("csstype").Property.PlaceItems | undefined;
2122
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2123
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2124
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2125
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2126
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2127
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2128
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2129
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2130
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2131
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2132
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2133
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
2134
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2135
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2136
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2137
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2138
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2139
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2140
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2141
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2142
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2143
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2144
- MozBinding?: import("csstype").Property.MozBinding | undefined;
2145
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2146
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2147
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2148
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2149
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2150
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2151
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2152
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2153
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2154
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2155
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2156
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2157
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2158
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2159
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2160
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2161
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2162
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2163
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2164
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
2165
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2166
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2167
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2168
- MozOrient?: import("csstype").Property.MozOrient | undefined;
2169
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2170
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2171
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2172
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2173
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2174
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2175
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2176
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2177
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2178
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2179
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2180
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2181
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2182
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2183
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2184
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2185
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2186
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2187
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2188
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2189
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2190
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2191
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2192
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2193
- msFilter?: import("csstype").Property.MsFilter | undefined;
2194
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2195
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2196
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2197
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2198
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2199
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2200
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2201
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2202
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2203
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2204
- msHyphens?: import("csstype").Property.Hyphens | undefined;
2205
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2206
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
2207
- msOrder?: import("csstype").Property.Order | undefined;
2208
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2209
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
2210
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
2211
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2212
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2213
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2214
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2215
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2216
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2217
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2218
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2219
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2220
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2221
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2222
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2223
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2224
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2225
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2226
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2227
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2228
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2229
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2230
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2231
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2232
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
2233
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2234
- msTransform?: import("csstype").Property.Transform | undefined;
2235
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2236
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2237
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2238
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2239
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2240
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2241
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
2242
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2243
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2244
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2245
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
2246
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2247
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2248
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2249
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2250
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2251
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2252
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2253
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2254
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2255
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2256
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2257
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2258
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2259
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2260
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2261
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2262
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2263
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2264
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2265
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2266
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2267
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2268
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2269
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2270
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2271
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2272
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2273
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2274
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2275
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2276
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2277
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2278
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2279
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2280
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2281
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2282
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2283
- WebkitFilter?: import("csstype").Property.Filter | undefined;
2284
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2285
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2286
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2287
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2288
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2289
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2290
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2291
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2292
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2293
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2294
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2295
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2296
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2297
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2298
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2299
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2300
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2301
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2302
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2303
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2304
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2305
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2306
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2307
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2308
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2309
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2310
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2311
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2312
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2313
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2314
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2315
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2316
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2317
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2318
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2319
- WebkitOrder?: import("csstype").Property.Order | undefined;
2320
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2321
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2322
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2323
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2324
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2325
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2326
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2327
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2328
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2329
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2330
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2331
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2332
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2333
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2334
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2335
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2336
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2337
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2338
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2339
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2340
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2341
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2342
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2343
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2344
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2345
- WebkitTransform?: import("csstype").Property.Transform | undefined;
2346
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2347
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2348
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2349
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2350
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2351
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2352
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2353
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2354
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2355
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2356
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2357
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2358
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2359
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2360
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2361
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2362
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2363
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2364
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2365
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2366
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2367
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2368
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2369
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2370
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2371
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2372
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2373
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2374
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2375
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2376
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2377
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2378
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2379
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2380
- azimuth?: import("csstype").Property.Azimuth | undefined;
2381
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
2382
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
2383
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
2384
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2385
- boxLines?: import("csstype").Property.BoxLines | undefined;
2386
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2387
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
2388
- boxPack?: import("csstype").Property.BoxPack | undefined;
2389
- clip?: import("csstype").Property.Clip | undefined;
2390
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2391
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2392
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2393
- imeMode?: import("csstype").Property.ImeMode | undefined;
2394
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2395
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2396
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2397
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2398
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2399
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2400
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2401
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2402
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2403
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2404
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2405
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2406
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2407
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2408
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2409
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2410
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2411
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2412
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2413
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2414
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2415
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2416
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2417
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2418
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2419
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2420
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2421
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2422
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2423
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2424
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2425
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2426
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2427
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2428
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2429
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2430
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2431
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2432
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2433
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2434
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2435
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2436
- MozOpacity?: import("csstype").Property.Opacity | undefined;
2437
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2438
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2439
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2440
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2441
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2442
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2443
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2444
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2445
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2446
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2447
- MozTransform?: import("csstype").Property.Transform | undefined;
2448
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2449
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2450
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2451
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2452
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2453
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2454
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2455
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2456
- msImeMode?: import("csstype").Property.ImeMode | undefined;
2457
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2458
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2459
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2460
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2461
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2462
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2463
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
2464
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2465
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2466
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2467
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
2468
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2469
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2470
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2471
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2472
- OTransform?: import("csstype").Property.Transform | undefined;
2473
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2474
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2475
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2476
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2477
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2478
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2479
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2480
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2481
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2482
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2483
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2484
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2485
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2486
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2487
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2488
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2489
- clipRule?: import("csstype").Property.ClipRule | undefined;
2490
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2491
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
2492
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2493
- fill?: import("csstype").Property.Fill | undefined;
2494
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2495
- fillRule?: import("csstype").Property.FillRule | undefined;
2496
- floodColor?: import("csstype").Property.FloodColor | undefined;
2497
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2498
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2499
- lightingColor?: import("csstype").Property.LightingColor | undefined;
2500
- marker?: import("csstype").Property.Marker | undefined;
2501
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2502
- markerMid?: import("csstype").Property.MarkerMid | undefined;
2503
- markerStart?: import("csstype").Property.MarkerStart | undefined;
2504
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2505
- stopColor?: import("csstype").Property.StopColor | undefined;
2506
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2507
- stroke?: import("csstype").Property.Stroke | undefined;
2508
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2509
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2510
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2511
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2512
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2513
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2514
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2515
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
2516
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2517
- "accent-color"?: import("csstype").Property.AccentColor | undefined;
2518
- "align-content"?: import("csstype").Property.AlignContent | undefined;
2519
- "align-items"?: import("csstype").Property.AlignItems | undefined;
2520
- "align-self"?: import("csstype").Property.AlignSelf | undefined;
2521
- "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
2522
- "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
2523
- "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2524
- "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2525
- "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2526
- "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2527
- "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2528
- "animation-name"?: import("csstype").Property.AnimationName | undefined;
2529
- "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2530
- "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2531
- "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2532
- "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
2533
- "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2534
- "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
2535
- "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
2536
- "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2537
- "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
2538
- "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
2539
- "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2540
- "background-color"?: import("csstype").Property.BackgroundColor | undefined;
2541
- "background-image"?: import("csstype").Property.BackgroundImage | undefined;
2542
- "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2543
- "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2544
- "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2545
- "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
2546
- "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2547
- "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
2548
- "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
2549
- "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
2550
- "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
2551
- "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
2552
- "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2553
- "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
2554
- "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
2555
- "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2556
- "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
2557
- "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2558
- "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
2559
- "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2560
- "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2561
- "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
2562
- "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2563
- "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
2564
- "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2565
- "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2566
- "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2567
- "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
2568
- "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
2569
- "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
2570
- "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2571
- "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
2572
- "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2573
- "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2574
- "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2575
- "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2576
- "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2577
- "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2578
- "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
2579
- "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2580
- "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
2581
- "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
2582
- "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2583
- "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
2584
- "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
2585
- "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2586
- "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2587
- "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2588
- "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2589
- "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
2590
- "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2591
- "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2592
- "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
2593
- "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2594
- "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
2595
- "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2596
- "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2597
- "break-after"?: import("csstype").Property.BreakAfter | undefined;
2598
- "break-before"?: import("csstype").Property.BreakBefore | undefined;
2599
- "break-inside"?: import("csstype").Property.BreakInside | undefined;
2600
- "caption-side"?: import("csstype").Property.CaptionSide | undefined;
2601
- "caret-color"?: import("csstype").Property.CaretColor | undefined;
2602
- "caret-shape"?: import("csstype").Property.CaretShape | undefined;
2603
- "clip-path"?: import("csstype").Property.ClipPath | undefined;
2604
- "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2605
- "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
2606
- "column-count"?: import("csstype").Property.ColumnCount | undefined;
2607
- "column-fill"?: import("csstype").Property.ColumnFill | undefined;
2608
- "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
2609
- "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2610
- "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2611
- "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2612
- "column-span"?: import("csstype").Property.ColumnSpan | undefined;
2613
- "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2614
- "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2615
- "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2616
- "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2617
- "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2618
- "container-name"?: import("csstype").Property.ContainerName | undefined;
2619
- "container-type"?: import("csstype").Property.ContainerType | undefined;
2620
- "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
2621
- "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
2622
- "counter-reset"?: import("csstype").Property.CounterReset | undefined;
2623
- "counter-set"?: import("csstype").Property.CounterSet | undefined;
2624
- "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
2625
- "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
2626
- "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2627
- "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
2628
- "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
2629
- "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
2630
- "font-family"?: import("csstype").Property.FontFamily | undefined;
2631
- "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2632
- "font-kerning"?: import("csstype").Property.FontKerning | undefined;
2633
- "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2634
- "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
2635
- "font-palette"?: import("csstype").Property.FontPalette | undefined;
2636
- "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
2637
- "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
2638
- "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2639
- "font-stretch"?: import("csstype").Property.FontStretch | undefined;
2640
- "font-style"?: import("csstype").Property.FontStyle | undefined;
2641
- "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
2642
- "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
2643
- "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2644
- "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
2645
- "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
2646
- "font-variant"?: import("csstype").Property.FontVariant | undefined;
2647
- "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
2648
- "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
2649
- "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
2650
- "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
2651
- "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
2652
- "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
2653
- "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
2654
- "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
2655
- "font-weight"?: import("csstype").Property.FontWeight | undefined;
2656
- "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
2657
- "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2658
- "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
2659
- "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2660
- "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
2661
- "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
2662
- "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
2663
- "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
2664
- "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
2665
- "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2666
- "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2667
- "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
2668
- "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
2669
- "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
2670
- "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
2671
- "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
2672
- "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
2673
- "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
2674
- "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
2675
- "input-security"?: import("csstype").Property.InputSecurity | undefined;
2676
- "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2677
- "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2678
- "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2679
- "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2680
- "justify-content"?: import("csstype").Property.JustifyContent | undefined;
2681
- "justify-items"?: import("csstype").Property.JustifyItems | undefined;
2682
- "justify-self"?: import("csstype").Property.JustifySelf | undefined;
2683
- "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
2684
- "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2685
- "line-break"?: import("csstype").Property.LineBreak | undefined;
2686
- "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
2687
- "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2688
- "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
2689
- "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
2690
- "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
2691
- "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2692
- "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2693
- "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
2694
- "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2695
- "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2696
- "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
2697
- "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
2698
- "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
2699
- "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
2700
- "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
2701
- "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2702
- "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
2703
- "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
2704
- "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
2705
- "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2706
- "mask-clip"?: import("csstype").Property.MaskClip | undefined;
2707
- "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
2708
- "mask-image"?: import("csstype").Property.MaskImage | undefined;
2709
- "mask-mode"?: import("csstype").Property.MaskMode | undefined;
2710
- "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
2711
- "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
2712
- "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
2713
- "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
2714
- "mask-type"?: import("csstype").Property.MaskType | undefined;
2715
- "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
2716
- "math-depth"?: import("csstype").Property.MathDepth | undefined;
2717
- "math-shift"?: import("csstype").Property.MathShift | undefined;
2718
- "math-style"?: import("csstype").Property.MathStyle | undefined;
2719
- "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2720
- "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
2721
- "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2722
- "max-lines"?: import("csstype").Property.MaxLines | undefined;
2723
- "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
2724
- "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2725
- "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
2726
- "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2727
- "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
2728
- "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
2729
- "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2730
- "motion-path"?: import("csstype").Property.OffsetPath | undefined;
2731
- "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2732
- "object-fit"?: import("csstype").Property.ObjectFit | undefined;
2733
- "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2734
- "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2735
- "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2736
- "offset-path"?: import("csstype").Property.OffsetPath | undefined;
2737
- "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2738
- "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
2739
- "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2740
- "outline-color"?: import("csstype").Property.OutlineColor | undefined;
2741
- "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2742
- "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
2743
- "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2744
- "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
2745
- "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
2746
- "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
2747
- "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2748
- "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
2749
- "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
2750
- "overflow-x"?: import("csstype").Property.OverflowX | undefined;
2751
- "overflow-y"?: import("csstype").Property.OverflowY | undefined;
2752
- "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2753
- "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2754
- "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
2755
- "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
2756
- "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2757
- "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2758
- "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2759
- "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2760
- "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2761
- "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2762
- "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
2763
- "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
2764
- "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
2765
- "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
2766
- "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
2767
- "paint-order"?: import("csstype").Property.PaintOrder | undefined;
2768
- "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2769
- "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
2770
- "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2771
- "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
2772
- "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
2773
- "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
2774
- "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
2775
- "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
2776
- "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2777
- "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2778
- "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2779
- "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2780
- "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2781
- "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2782
- "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2783
- "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2784
- "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2785
- "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2786
- "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2787
- "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2788
- "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2789
- "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2790
- "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2791
- "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2792
- "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
2793
- "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2794
- "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2795
- "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2796
- "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2797
- "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
2798
- "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
2799
- "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
2800
- "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
2801
- "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
2802
- "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
2803
- "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
2804
- "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
2805
- "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2806
- "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
2807
- "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2808
- "table-layout"?: import("csstype").Property.TableLayout | undefined;
2809
- "text-align"?: import("csstype").Property.TextAlign | undefined;
2810
- "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
2811
- "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
2812
- "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2813
- "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2814
- "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
2815
- "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
2816
- "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2817
- "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2818
- "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
2819
- "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
2820
- "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
2821
- "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
2822
- "text-justify"?: import("csstype").Property.TextJustify | undefined;
2823
- "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
2824
- "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2825
- "text-rendering"?: import("csstype").Property.TextRendering | undefined;
2826
- "text-shadow"?: import("csstype").Property.TextShadow | undefined;
2827
- "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2828
- "text-transform"?: import("csstype").Property.TextTransform | undefined;
2829
- "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2830
- "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
2831
- "text-wrap"?: import("csstype").Property.TextWrap | undefined;
2832
- "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
2833
- "touch-action"?: import("csstype").Property.TouchAction | undefined;
2834
- "transform-box"?: import("csstype").Property.TransformBox | undefined;
2835
- "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2836
- "transform-style"?: import("csstype").Property.TransformStyle | undefined;
2837
- "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
2838
- "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2839
- "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2840
- "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2841
- "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2842
- "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
2843
- "user-select"?: import("csstype").Property.UserSelect | undefined;
2844
- "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2845
- "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
2846
- "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2847
- "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
2848
- "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
2849
- "white-space"?: import("csstype").Property.WhiteSpace | undefined;
2850
- "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2851
- "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
2852
- "will-change"?: import("csstype").Property.WillChange | undefined;
2853
- "word-break"?: import("csstype").Property.WordBreak | undefined;
2854
- "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
2855
- "word-wrap"?: import("csstype").Property.WordWrap | undefined;
2856
- "writing-mode"?: import("csstype").Property.WritingMode | undefined;
2857
- "z-index"?: import("csstype").Property.ZIndex | undefined;
2858
- "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
2859
- "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2860
- "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
2861
- "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2862
- "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2863
- "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
2864
- "border-color"?: import("csstype").Property.BorderColor | undefined;
2865
- "border-image"?: import("csstype").Property.BorderImage | undefined;
2866
- "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
2867
- "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2868
- "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2869
- "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
2870
- "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
2871
- "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
2872
- "border-style"?: import("csstype").Property.BorderStyle | undefined;
2873
- "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
2874
- "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
2875
- "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
2876
- "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2877
- "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
2878
- "grid-area"?: import("csstype").Property.GridArea | undefined;
2879
- "grid-column"?: import("csstype").Property.GridColumn | undefined;
2880
- "grid-row"?: import("csstype").Property.GridRow | undefined;
2881
- "grid-template"?: import("csstype").Property.GridTemplate | undefined;
2882
- "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
2883
- "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
2884
- "line-clamp"?: import("csstype").Property.LineClamp | undefined;
2885
- "list-style"?: import("csstype").Property.ListStyle | undefined;
2886
- "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
2887
- "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
2888
- "mask-border"?: import("csstype").Property.MaskBorder | undefined;
2889
- "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
2890
- "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2891
- "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
2892
- "place-content"?: import("csstype").Property.PlaceContent | undefined;
2893
- "place-items"?: import("csstype").Property.PlaceItems | undefined;
2894
- "place-self"?: import("csstype").Property.PlaceSelf | undefined;
2895
- "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2896
- "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2897
- "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2898
- "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2899
- "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2900
- "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2901
- "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2902
- "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
2903
- "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
2904
- "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
2905
- "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
2906
- "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2907
- "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2908
- "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2909
- "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2910
- "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2911
- "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
2912
- "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2913
- "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2914
- "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
2915
- "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
2916
- "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
2917
- "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2918
- "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2919
- "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2920
- "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
2921
- "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
2922
- "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2923
- "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2924
- "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
2925
- "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2926
- "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
2927
- "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
2928
- "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2929
- "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2930
- "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2931
- "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2932
- "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
2933
- "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2934
- "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2935
- "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
2936
- "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
2937
- "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2938
- "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2939
- "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
2940
- "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2941
- "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2942
- "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2943
- "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2944
- "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2945
- "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2946
- "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2947
- "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
2948
- "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2949
- "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
2950
- "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2951
- "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
2952
- "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
2953
- "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
2954
- "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
2955
- "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
2956
- "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
2957
- "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
2958
- "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
2959
- "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2960
- "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2961
- "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2962
- "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
2963
- "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
2964
- "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
2965
- "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2966
- "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
2967
- "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
2968
- "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
2969
- "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2970
- "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
2971
- "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
2972
- "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2973
- "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2974
- "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2975
- "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
2976
- "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
2977
- "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
2978
- "-ms-order"?: import("csstype").Property.Order | undefined;
2979
- "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
2980
- "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
2981
- "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
2982
- "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
2983
- "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2984
- "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2985
- "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2986
- "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2987
- "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
2988
- "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2989
- "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2990
- "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
2991
- "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
2992
- "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2993
- "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2994
- "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2995
- "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2996
- "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2997
- "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2998
- "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2999
- "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3000
- "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
3001
- "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
3002
- "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3003
- "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
3004
- "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
3005
- "-ms-transform"?: import("csstype").Property.Transform | undefined;
3006
- "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3007
- "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3008
- "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3009
- "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3010
- "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3011
- "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
3012
- "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
3013
- "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
3014
- "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3015
- "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
3016
- "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3017
- "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
3018
- "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
3019
- "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
3020
- "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3021
- "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3022
- "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3023
- "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3024
- "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3025
- "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
3026
- "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3027
- "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3028
- "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
3029
- "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
3030
- "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3031
- "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3032
- "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3033
- "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3034
- "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3035
- "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3036
- "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3037
- "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3038
- "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3039
- "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
3040
- "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3041
- "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3042
- "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
3043
- "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3044
- "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3045
- "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3046
- "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
3047
- "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
3048
- "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
3049
- "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3050
- "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3051
- "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3052
- "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
3053
- "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3054
- "-webkit-filter"?: import("csstype").Property.Filter | undefined;
3055
- "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
3056
- "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3057
- "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
3058
- "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
3059
- "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
3060
- "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3061
- "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
3062
- "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
3063
- "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
3064
- "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
3065
- "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
3066
- "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
3067
- "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
3068
- "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
3069
- "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
3070
- "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3071
- "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3072
- "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
3073
- "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3074
- "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3075
- "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3076
- "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
3077
- "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3078
- "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
3079
- "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
3080
- "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
3081
- "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
3082
- "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3083
- "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3084
- "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3085
- "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
3086
- "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3087
- "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3088
- "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3089
- "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3090
- "-webkit-order"?: import("csstype").Property.Order | undefined;
3091
- "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3092
- "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3093
- "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3094
- "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3095
- "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3096
- "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3097
- "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3098
- "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3099
- "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3100
- "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3101
- "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
3102
- "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3103
- "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3104
- "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3105
- "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3106
- "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3107
- "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3108
- "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3109
- "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
3110
- "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3111
- "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3112
- "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3113
- "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3114
- "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3115
- "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
3116
- "-webkit-transform"?: import("csstype").Property.Transform | undefined;
3117
- "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3118
- "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3119
- "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3120
- "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3121
- "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3122
- "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3123
- "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
3124
- "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
3125
- "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3126
- "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3127
- "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
3128
- "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3129
- "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3130
- "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3131
- "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
3132
- "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
3133
- "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3134
- "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
3135
- "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
3136
- "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
3137
- "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3138
- "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3139
- "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3140
- "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
3141
- "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3142
- "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3143
- "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3144
- "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3145
- "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3146
- "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
3147
- "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
3148
- "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
3149
- "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3150
- "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3151
- "box-align"?: import("csstype").Property.BoxAlign | undefined;
3152
- "box-direction"?: import("csstype").Property.BoxDirection | undefined;
3153
- "box-flex"?: import("csstype").Property.BoxFlex | undefined;
3154
- "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3155
- "box-lines"?: import("csstype").Property.BoxLines | undefined;
3156
- "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3157
- "box-orient"?: import("csstype").Property.BoxOrient | undefined;
3158
- "box-pack"?: import("csstype").Property.BoxPack | undefined;
3159
- "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3160
- "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
3161
- "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
3162
- "ime-mode"?: import("csstype").Property.ImeMode | undefined;
3163
- "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
3164
- "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3165
- "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3166
- "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
3167
- "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3168
- "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3169
- "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3170
- "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3171
- "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
3172
- "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
3173
- "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
3174
- "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
3175
- "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
3176
- "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3177
- "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3178
- "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3179
- "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
3180
- "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3181
- "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3182
- "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
3183
- "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
3184
- "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
3185
- "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
3186
- "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3187
- "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3188
- "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
3189
- "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3190
- "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3191
- "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3192
- "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3193
- "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3194
- "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3195
- "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3196
- "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
3197
- "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3198
- "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3199
- "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3200
- "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3201
- "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
3202
- "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3203
- "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
3204
- "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3205
- "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
3206
- "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
3207
- "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
3208
- "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3209
- "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3210
- "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3211
- "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3212
- "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3213
- "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3214
- "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3215
- "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3216
- "-moz-transform"?: import("csstype").Property.Transform | undefined;
3217
- "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3218
- "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3219
- "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3220
- "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3221
- "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3222
- "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3223
- "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3224
- "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
3225
- "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
3226
- "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3227
- "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3228
- "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3229
- "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3230
- "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3231
- "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3232
- "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
3233
- "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3234
- "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3235
- "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3236
- "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
3237
- "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
3238
- "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3239
- "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3240
- "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3241
- "-o-transform"?: import("csstype").Property.Transform | undefined;
3242
- "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3243
- "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3244
- "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3245
- "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3246
- "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3247
- "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3248
- "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
3249
- "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3250
- "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3251
- "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3252
- "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
3253
- "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3254
- "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3255
- "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
3256
- "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
3257
- "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
3258
- "clip-rule"?: import("csstype").Property.ClipRule | undefined;
3259
- "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
3260
- "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
3261
- "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
3262
- "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
3263
- "fill-rule"?: import("csstype").Property.FillRule | undefined;
3264
- "flood-color"?: import("csstype").Property.FloodColor | undefined;
3265
- "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
3266
- "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
3267
- "lighting-color"?: import("csstype").Property.LightingColor | undefined;
3268
- "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
3269
- "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
3270
- "marker-start"?: import("csstype").Property.MarkerStart | undefined;
3271
- "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
3272
- "stop-color"?: import("csstype").Property.StopColor | undefined;
3273
- "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
3274
- "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3275
- "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3276
- "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
3277
- "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
3278
- "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
3279
- "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
3280
- "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3281
- "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
3282
- "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
3283
- }>;
3284
- hoveredKey: import("vue").Ref<string | number | null, string | number | null>;
3285
- setActiveMenuKey: (key?: string | number | null) => void;
3286
- handleMenuItemClick: (option: HeaderMenuOption) => void;
3287
- checkedTopMenuKey: import("vue").ComputedRef<string | number | undefined>;
3288
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3289
- readonly menuOptions: {
3290
- readonly type: PropType<HeaderMenuOption[]>;
3291
- readonly default: () => never[];
3292
- };
3293
- readonly menuPlacement: {
3294
- readonly type: PropType<HeaderMenuPlacement>;
3295
- readonly default: "horizontal";
3296
- };
3297
- readonly menuTrigger: {
3298
- readonly type: PropType<"click" | "hover">;
3299
- readonly default: "hover";
3300
- };
3301
- readonly menuValue: PropType<string | number | null>;
3302
- readonly menuTabsProps: {
3303
- readonly type: PropType<HeaderMenuTabsProps>;
3304
- readonly default: () => {};
3305
- };
3306
- readonly menuCardMinColumnWidth: {
3307
- readonly type: PropType<string | number>;
3308
- readonly default: 220;
3309
- };
3310
- readonly mergedClsPrefix: {
3311
- readonly type: PropType<string>;
3312
- readonly required: true;
3313
- };
3314
- readonly menuPaneClass: {
3315
- readonly type: StringConstructor;
3316
- readonly required: true;
3317
- };
3318
- readonly menuPaneWrapperClass: {
3319
- readonly type: StringConstructor;
3320
- readonly required: true;
3321
- };
3322
- readonly activeMenuKey: {
3323
- readonly type: PropType<string | number | null>;
3324
- readonly default: null;
3325
- };
3326
- readonly 'onUpdate:menuValue': PropType<MaybeArray<(value: string | number | null) => void>>;
3327
- readonly onUpdateMenuValue: PropType<MaybeArray<(value: string | number | null) => void>>;
3328
- readonly onUpdateActiveMenuKey: PropType<(value: string | number | null) => void>;
3329
- }>> & Readonly<{}>, {
3330
- readonly menuTrigger: "click" | "hover";
3331
- readonly menuOptions: HeaderMenuOption[];
3332
- readonly menuPlacement: HeaderMenuPlacement;
3333
- readonly activeMenuKey: string | number | null;
3334
- readonly menuTabsProps: Partial<import("../..").TabsProps>;
3335
- readonly menuCardMinColumnWidth: string | number;
3336
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
46
+ type HeaderNavigationProps = ExtractPropTypes<typeof headerNavigationProps>;
47
+ declare const _default: DefineComponent<HeaderNavigationProps>;
3337
48
  export default _default;