@spark-web/text-input 1.0.3 → 1.2.0

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