@spark-web/text-input 1.0.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.
@@ -0,0 +1,964 @@
1
+ import type { FieldContextType } from '@spark-web/field';
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'>;
14
+ export declare type TextInputProps = {
15
+ /** Map of data attributes. */
16
+ data?: DataAttributeMap;
17
+ /**
18
+ * How an input behaves varies considerably depending on the value of its type
19
+ * attribute. If this attribute is not specified, the default type "text".
20
+ */
21
+ type?: keyof typeof validTypes;
22
+ } & NativeInputProps;
23
+ /** Organize and emphasize information quickly and effectively in a list of text elements. */
24
+ export declare const TextInput: import("react").ForwardRefExoticComponent<{
25
+ /** Map of data attributes. */
26
+ data?: DataAttributeMap | undefined;
27
+ /**
28
+ * How an input behaves varies considerably depending on the value of its type
29
+ * attribute. If this attribute is not specified, the default type "text".
30
+ */
31
+ type?: "number" | "text" | "search" | "tel" | "url" | "email" | "password" | undefined;
32
+ } & 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
+ } | {
44
+ borderColor: string;
45
+ outline: number;
46
+ };
47
+ };
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;
963
+ };
964
+ export {};