@workday/canvas-kit-labs-react 14.0.0-alpha.1156-next.0 → 14.0.0-alpha.1164-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/ai-assistant-ingress-button/index.ts +2 -0
  2. package/ai-assistant-ingress-button/lib/AiAssistantIngressButton.tsx +179 -0
  3. package/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.tsx +20 -0
  4. package/ai-assistant-ingress-button/package.json +6 -0
  5. package/dist/commonjs/ai-assistant-ingress-button/index.d.ts +3 -0
  6. package/dist/commonjs/ai-assistant-ingress-button/index.d.ts.map +1 -0
  7. package/dist/commonjs/ai-assistant-ingress-button/index.js +18 -0
  8. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressButton.d.ts +1993 -0
  9. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressButton.d.ts.map +1 -0
  10. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressButton.js +57 -0
  11. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.d.ts +3 -0
  12. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.d.ts.map +1 -0
  13. package/dist/commonjs/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.js +23 -0
  14. package/dist/commonjs/index.d.ts +1 -0
  15. package/dist/commonjs/index.d.ts.map +1 -1
  16. package/dist/commonjs/index.js +1 -0
  17. package/dist/commonjs/search-form/lib/SearchForm.js +14 -14
  18. package/dist/es6/ai-assistant-ingress-button/index.d.ts +3 -0
  19. package/dist/es6/ai-assistant-ingress-button/index.d.ts.map +1 -0
  20. package/dist/es6/ai-assistant-ingress-button/index.js +2 -0
  21. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressButton.d.ts +1993 -0
  22. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressButton.d.ts.map +1 -0
  23. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressButton.js +54 -0
  24. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.d.ts +3 -0
  25. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.d.ts.map +1 -0
  26. package/dist/es6/ai-assistant-ingress-button/lib/AiAssistantIngressIcon.js +19 -0
  27. package/dist/es6/index.d.ts +1 -0
  28. package/dist/es6/index.d.ts.map +1 -1
  29. package/dist/es6/index.js +1 -0
  30. package/dist/es6/search-form/lib/SearchForm.js +14 -14
  31. package/index.ts +1 -0
  32. package/package.json +6 -6
@@ -0,0 +1,1993 @@
1
+ import { BaseButtonProps } from '@workday/canvas-kit-react/button';
2
+ export interface AiAssistantIngressButtonProps extends Omit<BaseButtonProps, 'size' | 'colors' | 'icon' | 'iconPosition' | 'shouldMirrorIcon'> {
3
+ /**
4
+ * When true, indicates that the assistant side panel is open.
5
+ */
6
+ toggled?: boolean;
7
+ /**
8
+ * Used on dark backgrounds.
9
+ */
10
+ variant?: 'inverse';
11
+ }
12
+ export declare const aiAssistantIngressButtonStencil: import("@workday/canvas-kit-styling").Stencil<{
13
+ variant: {
14
+ inverse: {
15
+ [x: string]: "--cnvs-sys-color-bg-default" | {
16
+ '.wd-icon-fill': {
17
+ transition: "fill 300ms ease-out";
18
+ };
19
+ '> linearGradient > stop': {
20
+ transition: "300ms ease-out";
21
+ stopColor: "--cnvs-sys-color-fg-ai";
22
+ };
23
+ '.wd-icon-ai-assistant-ingress-button'?: undefined;
24
+ } | {
25
+ '.wd-icon-ai-assistant-ingress-button': {
26
+ 'linearGradient > stop:first-child': {
27
+ stopColor: "#FFA198";
28
+ };
29
+ 'linearGradient > stop:nth-child(2)': {
30
+ stopColor: "#FFCAA0";
31
+ };
32
+ 'linearGradient > stop:nth-child(3)': {
33
+ stopColor: "#FFCA79";
34
+ };
35
+ 'linearGradient > stop:nth-child(4)': {
36
+ stopColor: "#FDCA44";
37
+ };
38
+ 'linearGradient > stop:nth-child(5)': {
39
+ stopColor: "#FFB74D";
40
+ };
41
+ };
42
+ '.wd-icon-fill'?: undefined;
43
+ '> linearGradient > stop'?: undefined;
44
+ };
45
+ '.wd-icon-ai-assistant-ingress-button': {
46
+ '.wd-icon-fill': {
47
+ transition: "fill 300ms ease-out";
48
+ };
49
+ '> linearGradient > stop': {
50
+ transition: "300ms ease-out";
51
+ stopColor: "--cnvs-sys-color-fg-ai";
52
+ };
53
+ };
54
+ '&:is(:hover, .hover):not(:disabled, .disabled)': {
55
+ '.wd-icon-ai-assistant-ingress-button': {
56
+ 'linearGradient > stop:first-child': {
57
+ stopColor: "#FFA198";
58
+ };
59
+ 'linearGradient > stop:nth-child(2)': {
60
+ stopColor: "#FFCAA0";
61
+ };
62
+ 'linearGradient > stop:nth-child(3)': {
63
+ stopColor: "#FFCA79";
64
+ };
65
+ 'linearGradient > stop:nth-child(4)': {
66
+ stopColor: "#FDCA44";
67
+ };
68
+ 'linearGradient > stop:nth-child(5)': {
69
+ stopColor: "#FFB74D";
70
+ };
71
+ };
72
+ };
73
+ };
74
+ };
75
+ toggled: {
76
+ true: {
77
+ [x: string]: "--cnvs-sys-color-bg-default" | "box-shadow 300ms ease-out, background 300ms ease-out" | "0px 0px 4.9px 0px #FFC2FD, 0px 0px 0.98px 0px #FFF3A8, 0px 0px 1.96px 0px #FEC10B, 0px 0px 2.94px 0px #FEC10B, 0px 0px 4.9px 0px #FD7E00, 0px 0px 7.36px 0px #FC5B05, 0px 0px 9.81px 0px #FFC2FD, 0px 0px 12.26px 0px rgba(255, 194, 253, 0.50)" | {
78
+ '.wd-icon-fill': {
79
+ transition: "fill 300ms ease-out";
80
+ };
81
+ '> linearGradient > stop': {
82
+ transition: "300ms ease-out";
83
+ stopColor: "--cnvs-sys-color-fg-ai";
84
+ };
85
+ } | {
86
+ border: string;
87
+ alignContent?: import("csstype").Property.AlignContent | (import("csstype").Property.AlignContent | undefined)[] | import("csstype").Property.AlignContent[] | undefined;
88
+ alignItems?: import("csstype").Property.AlignItems | (import("csstype").Property.AlignItems | undefined)[] | import("csstype").Property.AlignItems[] | undefined;
89
+ alignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
90
+ alignTracks?: import("csstype").Property.AlignTracks | (import("csstype").Property.AlignTracks | undefined)[] | import("csstype").Property.AlignTracks[] | undefined;
91
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
92
+ animationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
93
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
94
+ animationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
95
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
96
+ animationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
97
+ animationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
98
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
99
+ appearance?: import("csstype").Property.Appearance | (import("csstype").Property.Appearance | undefined)[] | import("csstype").Property.Appearance[] | undefined;
100
+ aspectRatio?: import("csstype").Property.AspectRatio | (import("csstype").Property.AspectRatio | undefined)[] | import("csstype").Property.AspectRatio[] | undefined;
101
+ backdropFilter?: import("csstype").Property.BackdropFilter | (import("csstype").Property.BackdropFilter | undefined)[] | import("csstype").Property.BackdropFilter[] | undefined;
102
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
103
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | (import("csstype").Property.BackgroundAttachment | undefined)[] | import("csstype").Property.BackgroundAttachment[] | undefined;
104
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | (import("csstype").Property.BackgroundBlendMode | undefined)[] | import("csstype").Property.BackgroundBlendMode[] | undefined;
105
+ backgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
106
+ backgroundColor?: import("csstype").Property.BackgroundColor | (import("csstype").Property.BackgroundColor | undefined)[] | import("csstype").Property.BackgroundColor[] | undefined;
107
+ backgroundImage?: import("csstype").Property.BackgroundImage | (import("csstype").Property.BackgroundImage | undefined)[] | import("csstype").Property.BackgroundImage[] | undefined;
108
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
109
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | (import("csstype").Property.BackgroundPositionX<string | number> | undefined)[] | (string | (string & {}))[] | undefined;
110
+ backgroundPositionY?: (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | (import("csstype").Property.BackgroundPositionY<string | number> | undefined)[] | undefined;
111
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | (import("csstype").Property.BackgroundRepeat | undefined)[] | import("csstype").Property.BackgroundRepeat[] | undefined;
112
+ backgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
113
+ blockOverflow?: import("csstype").Property.BlockOverflow | (import("csstype").Property.BlockOverflow | undefined)[] | import("csstype").Property.BlockOverflow[] | undefined;
114
+ blockSize?: (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | (import("csstype").Property.BlockSize<string | number> | undefined)[] | undefined;
115
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | (import("csstype").Property.BorderBlockColor | undefined)[] | import("csstype").Property.BorderBlockColor[] | undefined;
116
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | (import("csstype").Property.BorderBlockEndColor | undefined)[] | import("csstype").Property.BorderBlockEndColor[] | undefined;
117
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | (import("csstype").Property.BorderBlockEndStyle | undefined)[] | import("csstype").Property.BorderBlockEndStyle[] | undefined;
118
+ borderBlockEndWidth?: string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | (import("csstype").Property.BorderBlockEndWidth<string | number> | undefined)[] | undefined;
119
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | (import("csstype").Property.BorderBlockStartColor | undefined)[] | import("csstype").Property.BorderBlockStartColor[] | undefined;
120
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | (import("csstype").Property.BorderBlockStartStyle | undefined)[] | import("csstype").Property.BorderBlockStartStyle[] | undefined;
121
+ borderBlockStartWidth?: string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | (import("csstype").Property.BorderBlockStartWidth<string | number> | undefined)[] | undefined;
122
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | (import("csstype").Property.BorderBlockStyle | undefined)[] | import("csstype").Property.BorderBlockStyle[] | undefined;
123
+ borderBlockWidth?: string[] | import("csstype").Property.BorderBlockWidth<string | number> | (import("csstype").Property.BorderBlockWidth<string | number> | undefined)[] | undefined;
124
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | (import("csstype").Property.BorderBottomColor | undefined)[] | import("csstype").Property.BorderBottomColor[] | undefined;
125
+ borderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
126
+ borderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
127
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | (import("csstype").Property.BorderBottomStyle | undefined)[] | import("csstype").Property.BorderBottomStyle[] | undefined;
128
+ borderBottomWidth?: string[] | import("csstype").Property.BorderBottomWidth<string | number> | (import("csstype").Property.BorderBottomWidth<string | number> | undefined)[] | undefined;
129
+ borderCollapse?: import("csstype").Property.BorderCollapse | (import("csstype").Property.BorderCollapse | undefined)[] | import("csstype").Property.BorderCollapse[] | undefined;
130
+ borderEndEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | (import("csstype").Property.BorderEndEndRadius<string | number> | undefined)[] | undefined;
131
+ borderEndStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | (import("csstype").Property.BorderEndStartRadius<string | number> | undefined)[] | undefined;
132
+ borderImageOutset?: (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | (import("csstype").Property.BorderImageOutset<string | number> | undefined)[] | undefined;
133
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | (import("csstype").Property.BorderImageRepeat | undefined)[] | import("csstype").Property.BorderImageRepeat[] | undefined;
134
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | (import("csstype").Property.BorderImageSlice | undefined)[] | ((string & {}) | import("csstype").Globals)[] | undefined;
135
+ borderImageSource?: import("csstype").Property.BorderImageSource | (import("csstype").Property.BorderImageSource | undefined)[] | import("csstype").Property.BorderImageSource[] | undefined;
136
+ borderImageWidth?: (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | (import("csstype").Property.BorderImageWidth<string | number> | undefined)[] | undefined;
137
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | (import("csstype").Property.BorderInlineColor | undefined)[] | import("csstype").Property.BorderInlineColor[] | undefined;
138
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | (import("csstype").Property.BorderInlineEndColor | undefined)[] | import("csstype").Property.BorderInlineEndColor[] | undefined;
139
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | (import("csstype").Property.BorderInlineEndStyle | undefined)[] | import("csstype").Property.BorderInlineEndStyle[] | undefined;
140
+ borderInlineEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | (import("csstype").Property.BorderInlineEndWidth<string | number> | undefined)[] | undefined;
141
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | (import("csstype").Property.BorderInlineStartColor | undefined)[] | import("csstype").Property.BorderInlineStartColor[] | undefined;
142
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | (import("csstype").Property.BorderInlineStartStyle | undefined)[] | import("csstype").Property.BorderInlineStartStyle[] | undefined;
143
+ borderInlineStartWidth?: string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | (import("csstype").Property.BorderInlineStartWidth<string | number> | undefined)[] | undefined;
144
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | (import("csstype").Property.BorderInlineStyle | undefined)[] | import("csstype").Property.BorderInlineStyle[] | undefined;
145
+ borderInlineWidth?: string[] | import("csstype").Property.BorderInlineWidth<string | number> | (import("csstype").Property.BorderInlineWidth<string | number> | undefined)[] | undefined;
146
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | (import("csstype").Property.BorderLeftColor | undefined)[] | import("csstype").Property.BorderLeftColor[] | undefined;
147
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | (import("csstype").Property.BorderLeftStyle | undefined)[] | import("csstype").Property.BorderLeftStyle[] | undefined;
148
+ borderLeftWidth?: string[] | import("csstype").Property.BorderLeftWidth<string | number> | (import("csstype").Property.BorderLeftWidth<string | number> | undefined)[] | undefined;
149
+ borderRightColor?: import("csstype").Property.BorderRightColor | (import("csstype").Property.BorderRightColor | undefined)[] | import("csstype").Property.BorderRightColor[] | undefined;
150
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | (import("csstype").Property.BorderRightStyle | undefined)[] | import("csstype").Property.BorderRightStyle[] | undefined;
151
+ borderRightWidth?: string[] | import("csstype").Property.BorderRightWidth<string | number> | (import("csstype").Property.BorderRightWidth<string | number> | undefined)[] | undefined;
152
+ borderSpacing?: (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | (import("csstype").Property.BorderSpacing<string | number> | undefined)[] | undefined;
153
+ borderStartEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | (import("csstype").Property.BorderStartEndRadius<string | number> | undefined)[] | undefined;
154
+ borderStartStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | (import("csstype").Property.BorderStartStartRadius<string | number> | undefined)[] | undefined;
155
+ borderTopColor?: import("csstype").Property.BorderTopColor | (import("csstype").Property.BorderTopColor | undefined)[] | import("csstype").Property.BorderTopColor[] | undefined;
156
+ borderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
157
+ borderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
158
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | (import("csstype").Property.BorderTopStyle | undefined)[] | import("csstype").Property.BorderTopStyle[] | undefined;
159
+ borderTopWidth?: string[] | import("csstype").Property.BorderTopWidth<string | number> | (import("csstype").Property.BorderTopWidth<string | number> | undefined)[] | undefined;
160
+ bottom?: (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | (import("csstype").Property.Bottom<string | number> | undefined)[] | undefined;
161
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
162
+ boxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
163
+ boxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
164
+ breakAfter?: import("csstype").Property.BreakAfter | (import("csstype").Property.BreakAfter | undefined)[] | import("csstype").Property.BreakAfter[] | undefined;
165
+ breakBefore?: import("csstype").Property.BreakBefore | (import("csstype").Property.BreakBefore | undefined)[] | import("csstype").Property.BreakBefore[] | undefined;
166
+ breakInside?: import("csstype").Property.BreakInside | (import("csstype").Property.BreakInside | undefined)[] | import("csstype").Property.BreakInside[] | undefined;
167
+ captionSide?: import("csstype").Property.CaptionSide | (import("csstype").Property.CaptionSide | undefined)[] | import("csstype").Property.CaptionSide[] | undefined;
168
+ caretColor?: import("csstype").Property.CaretColor | (import("csstype").Property.CaretColor | undefined)[] | import("csstype").Property.CaretColor[] | undefined;
169
+ clear?: import("csstype").Property.Clear | (import("csstype").Property.Clear | undefined)[] | import("csstype").Property.Clear[] | undefined;
170
+ clipPath?: import("csstype").Property.ClipPath | (import("csstype").Property.ClipPath | undefined)[] | import("csstype").Property.ClipPath[] | undefined;
171
+ color?: import("csstype").Property.Color | (import("csstype").Property.Color | undefined)[] | import("csstype").Property.Color[] | undefined;
172
+ colorAdjust?: import("csstype").Property.ColorAdjust | (import("csstype").Property.ColorAdjust | undefined)[] | import("csstype").Property.ColorAdjust[] | undefined;
173
+ colorScheme?: import("csstype").Property.ColorScheme | (import("csstype").Property.ColorScheme | undefined)[] | import("csstype").Property.ColorScheme[] | undefined;
174
+ columnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
175
+ columnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
176
+ columnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
177
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
178
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
179
+ columnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
180
+ columnSpan?: import("csstype").Property.ColumnSpan | (import("csstype").Property.ColumnSpan | undefined)[] | import("csstype").Property.ColumnSpan[] | undefined;
181
+ columnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
182
+ contain?: import("csstype").Property.Contain | (import("csstype").Property.Contain | undefined)[] | import("csstype").Property.Contain[] | undefined;
183
+ content?: import("csstype").Property.Content | (import("csstype").Property.Content | undefined)[] | import("csstype").Property.Content[] | undefined;
184
+ contentVisibility?: import("csstype").Property.ContentVisibility | (import("csstype").Property.ContentVisibility | undefined)[] | import("csstype").Property.ContentVisibility[] | undefined;
185
+ counterIncrement?: import("csstype").Property.CounterIncrement | (import("csstype").Property.CounterIncrement | undefined)[] | import("csstype").Property.CounterIncrement[] | undefined;
186
+ counterReset?: import("csstype").Property.CounterReset | (import("csstype").Property.CounterReset | undefined)[] | import("csstype").Property.CounterReset[] | undefined;
187
+ counterSet?: import("csstype").Property.CounterSet | (import("csstype").Property.CounterSet | undefined)[] | import("csstype").Property.CounterSet[] | undefined;
188
+ cursor?: import("csstype").Property.Cursor | (import("csstype").Property.Cursor | undefined)[] | import("csstype").Property.Cursor[] | undefined;
189
+ direction?: import("csstype").Property.Direction | (import("csstype").Property.Direction | undefined)[] | import("csstype").Property.Direction[] | undefined;
190
+ display?: import("csstype").Property.Display | (import("csstype").Property.Display | undefined)[] | import("csstype").Property.Display[] | undefined;
191
+ emptyCells?: import("csstype").Property.EmptyCells | (import("csstype").Property.EmptyCells | undefined)[] | import("csstype").Property.EmptyCells[] | undefined;
192
+ filter?: import("csstype").Property.Filter | (import("csstype").Property.Filter | undefined)[] | import("csstype").Property.Filter[] | undefined;
193
+ flexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | (import("csstype").Property.FlexBasis<string | number> | undefined)[] | undefined;
194
+ flexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
195
+ flexGrow?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
196
+ flexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | (import("csstype").Property.FlexShrink | undefined)[] | undefined;
197
+ flexWrap?: import("csstype").Property.FlexWrap | (import("csstype").Property.FlexWrap | undefined)[] | import("csstype").Property.FlexWrap[] | undefined;
198
+ float?: import("csstype").Property.Float | (import("csstype").Property.Float | undefined)[] | import("csstype").Property.Float[] | undefined;
199
+ fontFamily?: import("csstype").Property.FontFamily | (import("csstype").Property.FontFamily | undefined)[] | import("csstype").Property.FontFamily[] | undefined;
200
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
201
+ fontKerning?: import("csstype").Property.FontKerning | (import("csstype").Property.FontKerning | undefined)[] | import("csstype").Property.FontKerning[] | undefined;
202
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | (import("csstype").Property.FontLanguageOverride | undefined)[] | import("csstype").Property.FontLanguageOverride[] | undefined;
203
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | (import("csstype").Property.FontOpticalSizing | undefined)[] | import("csstype").Property.FontOpticalSizing[] | undefined;
204
+ fontSize?: (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | (import("csstype").Property.FontSize<string | number> | undefined)[] | undefined;
205
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | (import("csstype").Property.FontSizeAdjust | undefined)[] | ("none" | import("csstype").Globals)[] | undefined;
206
+ fontSmooth?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
207
+ fontStretch?: import("csstype").Property.FontStretch | (import("csstype").Property.FontStretch | undefined)[] | import("csstype").Property.FontStretch[] | undefined;
208
+ fontStyle?: import("csstype").Property.FontStyle | (import("csstype").Property.FontStyle | undefined)[] | import("csstype").Property.FontStyle[] | undefined;
209
+ fontSynthesis?: import("csstype").Property.FontSynthesis | (import("csstype").Property.FontSynthesis | undefined)[] | import("csstype").Property.FontSynthesis[] | undefined;
210
+ fontVariant?: import("csstype").Property.FontVariant | (import("csstype").Property.FontVariant | undefined)[] | import("csstype").Property.FontVariant[] | undefined;
211
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | (import("csstype").Property.FontVariantCaps | undefined)[] | import("csstype").Property.FontVariantCaps[] | undefined;
212
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | (import("csstype").Property.FontVariantEastAsian | undefined)[] | import("csstype").Property.FontVariantEastAsian[] | undefined;
213
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | (import("csstype").Property.FontVariantLigatures | undefined)[] | import("csstype").Property.FontVariantLigatures[] | undefined;
214
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | (import("csstype").Property.FontVariantNumeric | undefined)[] | import("csstype").Property.FontVariantNumeric[] | undefined;
215
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | (import("csstype").Property.FontVariantPosition | undefined)[] | import("csstype").Property.FontVariantPosition[] | undefined;
216
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | (import("csstype").Property.FontVariationSettings | undefined)[] | import("csstype").Property.FontVariationSettings[] | undefined;
217
+ fontWeight?: import("csstype").Property.FontWeight | (import("csstype").Property.FontWeight | undefined)[] | ("bold" | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
218
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | (import("csstype").Property.ForcedColorAdjust | undefined)[] | import("csstype").Property.ForcedColorAdjust[] | undefined;
219
+ gridAutoColumns?: (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | (import("csstype").Property.GridAutoColumns<string | number> | undefined)[] | undefined;
220
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | (import("csstype").Property.GridAutoFlow | undefined)[] | import("csstype").Property.GridAutoFlow[] | undefined;
221
+ gridAutoRows?: (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | (import("csstype").Property.GridAutoRows<string | number> | undefined)[] | undefined;
222
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | (import("csstype").Property.GridColumnEnd | undefined)[] | ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
223
+ gridColumnStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | (import("csstype").Property.GridColumnStart | undefined)[] | undefined;
224
+ gridRowEnd?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | (import("csstype").Property.GridRowEnd | undefined)[] | undefined;
225
+ gridRowStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | (import("csstype").Property.GridRowStart | undefined)[] | undefined;
226
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | (import("csstype").Property.GridTemplateAreas | undefined)[] | import("csstype").Property.GridTemplateAreas[] | undefined;
227
+ gridTemplateColumns?: (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | (import("csstype").Property.GridTemplateColumns<string | number> | undefined)[] | undefined;
228
+ gridTemplateRows?: (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | (import("csstype").Property.GridTemplateRows<string | number> | undefined)[] | undefined;
229
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | (import("csstype").Property.HangingPunctuation | undefined)[] | import("csstype").Property.HangingPunctuation[] | undefined;
230
+ height?: (string | (string & {}))[] | import("csstype").Property.Height<string | number> | (import("csstype").Property.Height<string | number> | undefined)[] | undefined;
231
+ hyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
232
+ imageOrientation?: import("csstype").Property.ImageOrientation | (import("csstype").Property.ImageOrientation | undefined)[] | import("csstype").Property.ImageOrientation[] | undefined;
233
+ imageRendering?: import("csstype").Property.ImageRendering | (import("csstype").Property.ImageRendering | undefined)[] | import("csstype").Property.ImageRendering[] | undefined;
234
+ imageResolution?: import("csstype").Property.ImageResolution | (import("csstype").Property.ImageResolution | undefined)[] | import("csstype").Property.ImageResolution[] | undefined;
235
+ initialLetter?: import("csstype").Property.InitialLetter | (import("csstype").Property.InitialLetter | undefined)[] | ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
236
+ inlineSize?: (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | (import("csstype").Property.InlineSize<string | number> | undefined)[] | undefined;
237
+ inset?: (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | (import("csstype").Property.Inset<string | number> | undefined)[] | undefined;
238
+ insetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | (import("csstype").Property.InsetBlock<string | number> | undefined)[] | undefined;
239
+ insetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | (import("csstype").Property.InsetBlockEnd<string | number> | undefined)[] | undefined;
240
+ insetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | (import("csstype").Property.InsetBlockStart<string | number> | undefined)[] | undefined;
241
+ insetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | (import("csstype").Property.InsetInline<string | number> | undefined)[] | undefined;
242
+ insetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | (import("csstype").Property.InsetInlineEnd<string | number> | undefined)[] | undefined;
243
+ insetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | (import("csstype").Property.InsetInlineStart<string | number> | undefined)[] | undefined;
244
+ isolation?: import("csstype").Property.Isolation | (import("csstype").Property.Isolation | undefined)[] | import("csstype").Property.Isolation[] | undefined;
245
+ justifyContent?: import("csstype").Property.JustifyContent | (import("csstype").Property.JustifyContent | undefined)[] | import("csstype").Property.JustifyContent[] | undefined;
246
+ justifyItems?: import("csstype").Property.JustifyItems | (import("csstype").Property.JustifyItems | undefined)[] | import("csstype").Property.JustifyItems[] | undefined;
247
+ justifySelf?: import("csstype").Property.JustifySelf | (import("csstype").Property.JustifySelf | undefined)[] | import("csstype").Property.JustifySelf[] | undefined;
248
+ justifyTracks?: import("csstype").Property.JustifyTracks | (import("csstype").Property.JustifyTracks | undefined)[] | import("csstype").Property.JustifyTracks[] | undefined;
249
+ left?: (string | (string & {}))[] | import("csstype").Property.Left<string | number> | (import("csstype").Property.Left<string | number> | undefined)[] | undefined;
250
+ letterSpacing?: string[] | import("csstype").Property.LetterSpacing<string | number> | (import("csstype").Property.LetterSpacing<string | number> | undefined)[] | undefined;
251
+ lineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
252
+ lineHeight?: (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | (import("csstype").Property.LineHeight<string | number> | undefined)[] | undefined;
253
+ lineHeightStep?: string[] | import("csstype").Property.LineHeightStep<string | number> | (import("csstype").Property.LineHeightStep<string | number> | undefined)[] | undefined;
254
+ listStyleImage?: import("csstype").Property.ListStyleImage | (import("csstype").Property.ListStyleImage | undefined)[] | import("csstype").Property.ListStyleImage[] | undefined;
255
+ listStylePosition?: import("csstype").Property.ListStylePosition | (import("csstype").Property.ListStylePosition | undefined)[] | import("csstype").Property.ListStylePosition[] | undefined;
256
+ listStyleType?: import("csstype").Property.ListStyleType | (import("csstype").Property.ListStyleType | undefined)[] | import("csstype").Property.ListStyleType[] | undefined;
257
+ marginBlock?: (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | (import("csstype").Property.MarginBlock<string | number> | undefined)[] | undefined;
258
+ marginBlockEnd?: (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | (import("csstype").Property.MarginBlockEnd<string | number> | undefined)[] | undefined;
259
+ marginBlockStart?: (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | (import("csstype").Property.MarginBlockStart<string | number> | undefined)[] | undefined;
260
+ marginBottom?: (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | (import("csstype").Property.MarginBottom<string | number> | undefined)[] | undefined;
261
+ marginInline?: (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | (import("csstype").Property.MarginInline<string | number> | undefined)[] | undefined;
262
+ marginInlineEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
263
+ marginInlineStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
264
+ marginLeft?: (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | (import("csstype").Property.MarginLeft<string | number> | undefined)[] | undefined;
265
+ marginRight?: (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | (import("csstype").Property.MarginRight<string | number> | undefined)[] | undefined;
266
+ marginTop?: (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | (import("csstype").Property.MarginTop<string | number> | undefined)[] | undefined;
267
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | (import("csstype").Property.MaskBorderMode | undefined)[] | import("csstype").Property.MaskBorderMode[] | undefined;
268
+ maskBorderOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | (import("csstype").Property.MaskBorderOutset<string | number> | undefined)[] | undefined;
269
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | (import("csstype").Property.MaskBorderRepeat | undefined)[] | import("csstype").Property.MaskBorderRepeat[] | undefined;
270
+ maskBorderSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | (import("csstype").Property.MaskBorderSlice | undefined)[] | undefined;
271
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | (import("csstype").Property.MaskBorderSource | undefined)[] | import("csstype").Property.MaskBorderSource[] | undefined;
272
+ maskBorderWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | (import("csstype").Property.MaskBorderWidth<string | number> | undefined)[] | undefined;
273
+ maskClip?: import("csstype").Property.MaskClip | (import("csstype").Property.MaskClip | undefined)[] | import("csstype").Property.MaskClip[] | undefined;
274
+ maskComposite?: import("csstype").Property.MaskComposite | (import("csstype").Property.MaskComposite | undefined)[] | import("csstype").Property.MaskComposite[] | undefined;
275
+ maskImage?: import("csstype").Property.MaskImage | (import("csstype").Property.MaskImage | undefined)[] | import("csstype").Property.MaskImage[] | undefined;
276
+ maskMode?: import("csstype").Property.MaskMode | (import("csstype").Property.MaskMode | undefined)[] | import("csstype").Property.MaskMode[] | undefined;
277
+ maskOrigin?: import("csstype").Property.MaskOrigin | (import("csstype").Property.MaskOrigin | undefined)[] | import("csstype").Property.MaskOrigin[] | undefined;
278
+ maskPosition?: (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | (import("csstype").Property.MaskPosition<string | number> | undefined)[] | undefined;
279
+ maskRepeat?: import("csstype").Property.MaskRepeat | (import("csstype").Property.MaskRepeat | undefined)[] | import("csstype").Property.MaskRepeat[] | undefined;
280
+ maskSize?: (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | (import("csstype").Property.MaskSize<string | number> | undefined)[] | undefined;
281
+ maskType?: import("csstype").Property.MaskType | (import("csstype").Property.MaskType | undefined)[] | import("csstype").Property.MaskType[] | undefined;
282
+ mathStyle?: import("csstype").Property.MathStyle | (import("csstype").Property.MathStyle | undefined)[] | import("csstype").Property.MathStyle[] | undefined;
283
+ maxBlockSize?: (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | (import("csstype").Property.MaxBlockSize<string | number> | undefined)[] | undefined;
284
+ maxHeight?: (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | (import("csstype").Property.MaxHeight<string | number> | undefined)[] | undefined;
285
+ maxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | (import("csstype").Property.MaxInlineSize<string | number> | undefined)[] | undefined;
286
+ maxLines?: ("none" | import("csstype").Globals)[] | import("csstype").Property.MaxLines | (import("csstype").Property.MaxLines | undefined)[] | undefined;
287
+ maxWidth?: (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | (import("csstype").Property.MaxWidth<string | number> | undefined)[] | undefined;
288
+ minBlockSize?: (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | (import("csstype").Property.MinBlockSize<string | number> | undefined)[] | undefined;
289
+ minHeight?: (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | (import("csstype").Property.MinHeight<string | number> | undefined)[] | undefined;
290
+ minInlineSize?: (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | (import("csstype").Property.MinInlineSize<string | number> | undefined)[] | undefined;
291
+ minWidth?: (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | (import("csstype").Property.MinWidth<string | number> | undefined)[] | undefined;
292
+ mixBlendMode?: import("csstype").Property.MixBlendMode | (import("csstype").Property.MixBlendMode | undefined)[] | import("csstype").Property.MixBlendMode[] | undefined;
293
+ motionDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | (import("csstype").Property.OffsetDistance<string | number> | undefined)[] | undefined;
294
+ motionPath?: import("csstype").Property.OffsetPath | (import("csstype").Property.OffsetPath | undefined)[] | import("csstype").Property.OffsetPath[] | undefined;
295
+ motionRotation?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
296
+ objectFit?: import("csstype").Property.ObjectFit | (import("csstype").Property.ObjectFit | undefined)[] | import("csstype").Property.ObjectFit[] | undefined;
297
+ objectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | (import("csstype").Property.ObjectPosition<string | number> | undefined)[] | undefined;
298
+ offsetAnchor?: (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | (import("csstype").Property.OffsetAnchor<string | number> | undefined)[] | undefined;
299
+ offsetDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | (import("csstype").Property.OffsetDistance<string | number> | undefined)[] | undefined;
300
+ offsetPath?: import("csstype").Property.OffsetPath | (import("csstype").Property.OffsetPath | undefined)[] | import("csstype").Property.OffsetPath[] | undefined;
301
+ offsetRotate?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
302
+ offsetRotation?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
303
+ opacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
304
+ order?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
305
+ orphans?: import("csstype").Globals[] | import("csstype").Property.Orphans | (import("csstype").Property.Orphans | undefined)[] | undefined;
306
+ outlineColor?: import("csstype").Property.OutlineColor | (import("csstype").Property.OutlineColor | undefined)[] | import("csstype").Property.OutlineColor[] | undefined;
307
+ outlineOffset?: string[] | import("csstype").Property.OutlineOffset<string | number> | (import("csstype").Property.OutlineOffset<string | number> | undefined)[] | undefined;
308
+ outlineStyle?: import("csstype").Property.OutlineStyle | (import("csstype").Property.OutlineStyle | undefined)[] | import("csstype").Property.OutlineStyle[] | undefined;
309
+ outlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | (import("csstype").Property.OutlineWidth<string | number> | undefined)[] | undefined;
310
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | (import("csstype").Property.OverflowAnchor | undefined)[] | import("csstype").Property.OverflowAnchor[] | undefined;
311
+ overflowBlock?: import("csstype").Property.OverflowBlock | (import("csstype").Property.OverflowBlock | undefined)[] | import("csstype").Property.OverflowBlock[] | undefined;
312
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | (import("csstype").Property.OverflowClipBox | undefined)[] | import("csstype").Property.OverflowClipBox[] | undefined;
313
+ overflowClipMargin?: (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | (import("csstype").Property.OverflowClipMargin<string | number> | undefined)[] | undefined;
314
+ overflowInline?: import("csstype").Property.OverflowInline | (import("csstype").Property.OverflowInline | undefined)[] | import("csstype").Property.OverflowInline[] | undefined;
315
+ overflowWrap?: import("csstype").Property.OverflowWrap | (import("csstype").Property.OverflowWrap | undefined)[] | import("csstype").Property.OverflowWrap[] | undefined;
316
+ overflowX?: import("csstype").Property.OverflowX | (import("csstype").Property.OverflowX | undefined)[] | import("csstype").Property.OverflowX[] | undefined;
317
+ overflowY?: import("csstype").Property.OverflowY | (import("csstype").Property.OverflowY | undefined)[] | import("csstype").Property.OverflowY[] | undefined;
318
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | (import("csstype").Property.OverscrollBehaviorBlock | undefined)[] | import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
319
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | (import("csstype").Property.OverscrollBehaviorInline | undefined)[] | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
320
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | (import("csstype").Property.OverscrollBehaviorX | undefined)[] | import("csstype").Property.OverscrollBehaviorX[] | undefined;
321
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | (import("csstype").Property.OverscrollBehaviorY | undefined)[] | import("csstype").Property.OverscrollBehaviorY[] | undefined;
322
+ paddingBlock?: (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | (import("csstype").Property.PaddingBlock<string | number> | undefined)[] | undefined;
323
+ paddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | (import("csstype").Property.PaddingBlockEnd<string | number> | undefined)[] | undefined;
324
+ paddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | (import("csstype").Property.PaddingBlockStart<string | number> | undefined)[] | undefined;
325
+ paddingBottom?: (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | (import("csstype").Property.PaddingBottom<string | number> | undefined)[] | undefined;
326
+ paddingInline?: (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | (import("csstype").Property.PaddingInline<string | number> | undefined)[] | undefined;
327
+ paddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
328
+ paddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
329
+ paddingLeft?: (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | (import("csstype").Property.PaddingLeft<string | number> | undefined)[] | undefined;
330
+ paddingRight?: (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | (import("csstype").Property.PaddingRight<string | number> | undefined)[] | undefined;
331
+ paddingTop?: (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | (import("csstype").Property.PaddingTop<string | number> | undefined)[] | undefined;
332
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | (import("csstype").Property.PageBreakAfter | undefined)[] | import("csstype").Property.PageBreakAfter[] | undefined;
333
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | (import("csstype").Property.PageBreakBefore | undefined)[] | import("csstype").Property.PageBreakBefore[] | undefined;
334
+ pageBreakInside?: import("csstype").Property.PageBreakInside | (import("csstype").Property.PageBreakInside | undefined)[] | import("csstype").Property.PageBreakInside[] | undefined;
335
+ paintOrder?: import("csstype").Property.PaintOrder | (import("csstype").Property.PaintOrder | undefined)[] | import("csstype").Property.PaintOrder[] | undefined;
336
+ perspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
337
+ perspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
338
+ placeContent?: import("csstype").Property.PlaceContent | (import("csstype").Property.PlaceContent | undefined)[] | import("csstype").Property.PlaceContent[] | undefined;
339
+ pointerEvents?: import("csstype").Property.PointerEvents | (import("csstype").Property.PointerEvents | undefined)[] | import("csstype").Property.PointerEvents[] | undefined;
340
+ position?: import("csstype").Property.Position | (import("csstype").Property.Position | undefined)[] | import("csstype").Property.Position[] | undefined;
341
+ quotes?: import("csstype").Property.Quotes | (import("csstype").Property.Quotes | undefined)[] | import("csstype").Property.Quotes[] | undefined;
342
+ resize?: import("csstype").Property.Resize | (import("csstype").Property.Resize | undefined)[] | import("csstype").Property.Resize[] | undefined;
343
+ right?: (string | (string & {}))[] | import("csstype").Property.Right<string | number> | (import("csstype").Property.Right<string | number> | undefined)[] | undefined;
344
+ rotate?: import("csstype").Property.Rotate | (import("csstype").Property.Rotate | undefined)[] | import("csstype").Property.Rotate[] | undefined;
345
+ rowGap?: (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | (import("csstype").Property.RowGap<string | number> | undefined)[] | undefined;
346
+ rubyAlign?: import("csstype").Property.RubyAlign | (import("csstype").Property.RubyAlign | undefined)[] | import("csstype").Property.RubyAlign[] | undefined;
347
+ rubyMerge?: import("csstype").Property.RubyMerge | (import("csstype").Property.RubyMerge | undefined)[] | import("csstype").Property.RubyMerge[] | undefined;
348
+ rubyPosition?: import("csstype").Property.RubyPosition | (import("csstype").Property.RubyPosition | undefined)[] | import("csstype").Property.RubyPosition[] | undefined;
349
+ scale?: import("csstype").Property.Scale | (import("csstype").Property.Scale | undefined)[] | ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
350
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | (import("csstype").Property.ScrollBehavior | undefined)[] | import("csstype").Property.ScrollBehavior[] | undefined;
351
+ scrollMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | (import("csstype").Property.ScrollMargin<string | number> | undefined)[] | undefined;
352
+ scrollMarginBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | (import("csstype").Property.ScrollMarginBlock<string | number> | undefined)[] | undefined;
353
+ scrollMarginBlockEnd?: string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | (import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined)[] | undefined;
354
+ scrollMarginBlockStart?: string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | (import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined)[] | undefined;
355
+ scrollMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | (import("csstype").Property.ScrollMarginBottom<string | number> | undefined)[] | undefined;
356
+ scrollMarginInline?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | (import("csstype").Property.ScrollMarginInline<string | number> | undefined)[] | undefined;
357
+ scrollMarginInlineEnd?: string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | (import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined)[] | undefined;
358
+ scrollMarginInlineStart?: string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | (import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined)[] | undefined;
359
+ scrollMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | (import("csstype").Property.ScrollMarginLeft<string | number> | undefined)[] | undefined;
360
+ scrollMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | (import("csstype").Property.ScrollMarginRight<string | number> | undefined)[] | undefined;
361
+ scrollMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | (import("csstype").Property.ScrollMarginTop<string | number> | undefined)[] | undefined;
362
+ scrollPadding?: (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | (import("csstype").Property.ScrollPadding<string | number> | undefined)[] | undefined;
363
+ scrollPaddingBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | (import("csstype").Property.ScrollPaddingBlock<string | number> | undefined)[] | undefined;
364
+ scrollPaddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | (import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined)[] | undefined;
365
+ scrollPaddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | (import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined)[] | undefined;
366
+ scrollPaddingBottom?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | (import("csstype").Property.ScrollPaddingBottom<string | number> | undefined)[] | undefined;
367
+ scrollPaddingInline?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | (import("csstype").Property.ScrollPaddingInline<string | number> | undefined)[] | undefined;
368
+ scrollPaddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | (import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined)[] | undefined;
369
+ scrollPaddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | (import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined)[] | undefined;
370
+ scrollPaddingLeft?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | (import("csstype").Property.ScrollPaddingLeft<string | number> | undefined)[] | undefined;
371
+ scrollPaddingRight?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | (import("csstype").Property.ScrollPaddingRight<string | number> | undefined)[] | undefined;
372
+ scrollPaddingTop?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | (import("csstype").Property.ScrollPaddingTop<string | number> | undefined)[] | undefined;
373
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | (import("csstype").Property.ScrollSnapAlign | undefined)[] | import("csstype").Property.ScrollSnapAlign[] | undefined;
374
+ scrollSnapMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | (import("csstype").Property.ScrollMargin<string | number> | undefined)[] | undefined;
375
+ scrollSnapMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | (import("csstype").Property.ScrollMarginBottom<string | number> | undefined)[] | undefined;
376
+ scrollSnapMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | (import("csstype").Property.ScrollMarginLeft<string | number> | undefined)[] | undefined;
377
+ scrollSnapMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | (import("csstype").Property.ScrollMarginRight<string | number> | undefined)[] | undefined;
378
+ scrollSnapMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | (import("csstype").Property.ScrollMarginTop<string | number> | undefined)[] | undefined;
379
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | (import("csstype").Property.ScrollSnapStop | undefined)[] | import("csstype").Property.ScrollSnapStop[] | undefined;
380
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | (import("csstype").Property.ScrollSnapType | undefined)[] | import("csstype").Property.ScrollSnapType[] | undefined;
381
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | (import("csstype").Property.ScrollbarColor | undefined)[] | import("csstype").Property.ScrollbarColor[] | undefined;
382
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | (import("csstype").Property.ScrollbarGutter | undefined)[] | import("csstype").Property.ScrollbarGutter[] | undefined;
383
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | (import("csstype").Property.ScrollbarWidth | undefined)[] | import("csstype").Property.ScrollbarWidth[] | undefined;
384
+ shapeImageThreshold?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | (import("csstype").Property.ShapeImageThreshold | undefined)[] | undefined;
385
+ shapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | (import("csstype").Property.ShapeMargin<string | number> | undefined)[] | undefined;
386
+ shapeOutside?: import("csstype").Property.ShapeOutside | (import("csstype").Property.ShapeOutside | undefined)[] | import("csstype").Property.ShapeOutside[] | undefined;
387
+ tabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
388
+ tableLayout?: import("csstype").Property.TableLayout | (import("csstype").Property.TableLayout | undefined)[] | import("csstype").Property.TableLayout[] | undefined;
389
+ textAlign?: import("csstype").Property.TextAlign | (import("csstype").Property.TextAlign | undefined)[] | import("csstype").Property.TextAlign[] | undefined;
390
+ textAlignLast?: import("csstype").Property.TextAlignLast | (import("csstype").Property.TextAlignLast | undefined)[] | import("csstype").Property.TextAlignLast[] | undefined;
391
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
392
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
393
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
394
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | (import("csstype").Property.TextDecorationSkip | undefined)[] | import("csstype").Property.TextDecorationSkip[] | undefined;
395
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | (import("csstype").Property.TextDecorationSkipInk | undefined)[] | import("csstype").Property.TextDecorationSkipInk[] | undefined;
396
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
397
+ textDecorationThickness?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | (import("csstype").Property.TextDecorationThickness<string | number> | undefined)[] | undefined;
398
+ textDecorationWidth?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | (import("csstype").Property.TextDecorationThickness<string | number> | undefined)[] | undefined;
399
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | (import("csstype").Property.TextEmphasisColor | undefined)[] | import("csstype").Property.TextEmphasisColor[] | undefined;
400
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | (import("csstype").Property.TextEmphasisPosition | undefined)[] | import("csstype").Property.TextEmphasisPosition[] | undefined;
401
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | (import("csstype").Property.TextEmphasisStyle | undefined)[] | import("csstype").Property.TextEmphasisStyle[] | undefined;
402
+ textIndent?: (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | (import("csstype").Property.TextIndent<string | number> | undefined)[] | undefined;
403
+ textJustify?: import("csstype").Property.TextJustify | (import("csstype").Property.TextJustify | undefined)[] | import("csstype").Property.TextJustify[] | undefined;
404
+ textOrientation?: import("csstype").Property.TextOrientation | (import("csstype").Property.TextOrientation | undefined)[] | import("csstype").Property.TextOrientation[] | undefined;
405
+ textOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
406
+ textRendering?: import("csstype").Property.TextRendering | (import("csstype").Property.TextRendering | undefined)[] | import("csstype").Property.TextRendering[] | undefined;
407
+ textShadow?: import("csstype").Property.TextShadow | (import("csstype").Property.TextShadow | undefined)[] | import("csstype").Property.TextShadow[] | undefined;
408
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
409
+ textTransform?: import("csstype").Property.TextTransform | (import("csstype").Property.TextTransform | undefined)[] | import("csstype").Property.TextTransform[] | undefined;
410
+ textUnderlineOffset?: (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | (import("csstype").Property.TextUnderlineOffset<string | number> | undefined)[] | undefined;
411
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | (import("csstype").Property.TextUnderlinePosition | undefined)[] | import("csstype").Property.TextUnderlinePosition[] | undefined;
412
+ top?: (string | (string & {}))[] | import("csstype").Property.Top<string | number> | (import("csstype").Property.Top<string | number> | undefined)[] | undefined;
413
+ touchAction?: import("csstype").Property.TouchAction | (import("csstype").Property.TouchAction | undefined)[] | import("csstype").Property.TouchAction[] | undefined;
414
+ transform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
415
+ transformBox?: import("csstype").Property.TransformBox | (import("csstype").Property.TransformBox | undefined)[] | import("csstype").Property.TransformBox[] | undefined;
416
+ transformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
417
+ transformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
418
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
419
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
420
+ transitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
421
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
422
+ translate?: (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | (import("csstype").Property.Translate<string | number> | undefined)[] | undefined;
423
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | (import("csstype").Property.UnicodeBidi | undefined)[] | import("csstype").Property.UnicodeBidi[] | undefined;
424
+ userSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
425
+ verticalAlign?: (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | (import("csstype").Property.VerticalAlign<string | number> | undefined)[] | undefined;
426
+ visibility?: import("csstype").Property.Visibility | (import("csstype").Property.Visibility | undefined)[] | import("csstype").Property.Visibility[] | undefined;
427
+ whiteSpace?: import("csstype").Property.WhiteSpace | (import("csstype").Property.WhiteSpace | undefined)[] | import("csstype").Property.WhiteSpace[] | undefined;
428
+ widows?: import("csstype").Globals[] | import("csstype").Property.Widows | (import("csstype").Property.Widows | undefined)[] | undefined;
429
+ width?: (string | (string & {}))[] | import("csstype").Property.Width<string | number> | (import("csstype").Property.Width<string | number> | undefined)[] | undefined;
430
+ willChange?: import("csstype").Property.WillChange | (import("csstype").Property.WillChange | undefined)[] | import("csstype").Property.WillChange[] | undefined;
431
+ wordBreak?: import("csstype").Property.WordBreak | (import("csstype").Property.WordBreak | undefined)[] | import("csstype").Property.WordBreak[] | undefined;
432
+ wordSpacing?: (string | (string & {}))[] | import("csstype").Property.WordSpacing<string | number> | (import("csstype").Property.WordSpacing<string | number> | undefined)[] | undefined;
433
+ wordWrap?: import("csstype").Property.WordWrap | (import("csstype").Property.WordWrap | undefined)[] | import("csstype").Property.WordWrap[] | undefined;
434
+ writingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
435
+ zIndex?: ("auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | (import("csstype").Property.ZIndex | undefined)[] | undefined;
436
+ zoom?: import("csstype").Property.Zoom | (import("csstype").Property.Zoom | undefined)[] | ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
437
+ all?: import("csstype").Globals | import("csstype").Globals[] | (import("csstype").Globals | undefined)[] | undefined;
438
+ animation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
439
+ background?: (string | (string & {}))[] | import("csstype").Property.Background<string | number> | (import("csstype").Property.Background<string | number> | undefined)[] | undefined;
440
+ backgroundPosition?: (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | (import("csstype").Property.BackgroundPosition<string | number> | undefined)[] | undefined;
441
+ borderBlock?: (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | (import("csstype").Property.BorderBlock<string | number> | undefined)[] | undefined;
442
+ borderBlockEnd?: (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | (import("csstype").Property.BorderBlockEnd<string | number> | undefined)[] | undefined;
443
+ borderBlockStart?: (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | (import("csstype").Property.BorderBlockStart<string | number> | undefined)[] | undefined;
444
+ borderBottom?: (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | (import("csstype").Property.BorderBottom<string | number> | undefined)[] | undefined;
445
+ borderColor?: import("csstype").Property.BorderColor | (import("csstype").Property.BorderColor | undefined)[] | import("csstype").Property.BorderColor[] | undefined;
446
+ borderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
447
+ borderInline?: (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | (import("csstype").Property.BorderInline<string | number> | undefined)[] | undefined;
448
+ borderInlineEnd?: (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | (import("csstype").Property.BorderInlineEnd<string | number> | undefined)[] | undefined;
449
+ borderInlineStart?: (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | (import("csstype").Property.BorderInlineStart<string | number> | undefined)[] | undefined;
450
+ borderLeft?: (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | (import("csstype").Property.BorderLeft<string | number> | undefined)[] | undefined;
451
+ borderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
452
+ borderRight?: (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | (import("csstype").Property.BorderRight<string | number> | undefined)[] | undefined;
453
+ borderStyle?: import("csstype").Property.BorderStyle | (import("csstype").Property.BorderStyle | undefined)[] | import("csstype").Property.BorderStyle[] | undefined;
454
+ borderTop?: (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | (import("csstype").Property.BorderTop<string | number> | undefined)[] | undefined;
455
+ borderWidth?: (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | (import("csstype").Property.BorderWidth<string | number> | undefined)[] | undefined;
456
+ columnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
457
+ columns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
458
+ flex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
459
+ flexFlow?: import("csstype").Property.FlexFlow | (import("csstype").Property.FlexFlow | undefined)[] | import("csstype").Property.FlexFlow[] | undefined;
460
+ font?: import("csstype").Property.Font | (import("csstype").Property.Font | undefined)[] | import("csstype").Property.Font[] | undefined;
461
+ gap?: (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | (import("csstype").Property.Gap<string | number> | undefined)[] | undefined;
462
+ grid?: import("csstype").Property.Grid | (import("csstype").Property.Grid | undefined)[] | import("csstype").Property.Grid[] | undefined;
463
+ gridArea?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | (import("csstype").Property.GridArea | undefined)[] | undefined;
464
+ gridColumn?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | (import("csstype").Property.GridColumn | undefined)[] | undefined;
465
+ gridRow?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | (import("csstype").Property.GridRow | undefined)[] | undefined;
466
+ gridTemplate?: import("csstype").Property.GridTemplate | (import("csstype").Property.GridTemplate | undefined)[] | import("csstype").Property.GridTemplate[] | undefined;
467
+ lineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.LineClamp | (import("csstype").Property.LineClamp | undefined)[] | undefined;
468
+ listStyle?: import("csstype").Property.ListStyle | (import("csstype").Property.ListStyle | undefined)[] | import("csstype").Property.ListStyle[] | undefined;
469
+ margin?: (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | (import("csstype").Property.Margin<string | number> | undefined)[] | undefined;
470
+ mask?: (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | (import("csstype").Property.Mask<string | number> | undefined)[] | undefined;
471
+ maskBorder?: import("csstype").Property.MaskBorder | (import("csstype").Property.MaskBorder | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
472
+ motion?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | (import("csstype").Property.Offset<string | number> | undefined)[] | undefined;
473
+ offset?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | (import("csstype").Property.Offset<string | number> | undefined)[] | undefined;
474
+ outline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | (import("csstype").Property.Outline<string | number> | undefined)[] | undefined;
475
+ overflow?: import("csstype").Property.Overflow | (import("csstype").Property.Overflow | undefined)[] | import("csstype").Property.Overflow[] | undefined;
476
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | (import("csstype").Property.OverscrollBehavior | undefined)[] | import("csstype").Property.OverscrollBehavior[] | undefined;
477
+ padding?: (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | (import("csstype").Property.Padding<string | number> | undefined)[] | undefined;
478
+ placeItems?: import("csstype").Property.PlaceItems | (import("csstype").Property.PlaceItems | undefined)[] | import("csstype").Property.PlaceItems[] | undefined;
479
+ placeSelf?: import("csstype").Property.PlaceSelf | (import("csstype").Property.PlaceSelf | undefined)[] | import("csstype").Property.PlaceSelf[] | undefined;
480
+ textDecoration?: (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | (import("csstype").Property.TextDecoration<string | number> | undefined)[] | undefined;
481
+ textEmphasis?: import("csstype").Property.TextEmphasis | (import("csstype").Property.TextEmphasis | undefined)[] | import("csstype").Property.TextEmphasis[] | undefined;
482
+ transition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
483
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
484
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
485
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
486
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
487
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
488
+ MozAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
489
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
490
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
491
+ MozAppearance?: import("csstype").Property.MozAppearance | (import("csstype").Property.MozAppearance | undefined)[] | import("csstype").Property.MozAppearance[] | undefined;
492
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
493
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | (import("csstype").Property.MozBorderBottomColors | undefined)[] | import("csstype").Property.MozBorderBottomColors[] | undefined;
494
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | (import("csstype").Property.BorderInlineEndColor | undefined)[] | import("csstype").Property.BorderInlineEndColor[] | undefined;
495
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | (import("csstype").Property.BorderInlineEndStyle | undefined)[] | import("csstype").Property.BorderInlineEndStyle[] | undefined;
496
+ MozBorderEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | (import("csstype").Property.BorderInlineEndWidth<string | number> | undefined)[] | undefined;
497
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | (import("csstype").Property.MozBorderLeftColors | undefined)[] | import("csstype").Property.MozBorderLeftColors[] | undefined;
498
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | (import("csstype").Property.MozBorderRightColors | undefined)[] | import("csstype").Property.MozBorderRightColors[] | undefined;
499
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | (import("csstype").Property.BorderInlineStartColor | undefined)[] | import("csstype").Property.BorderInlineStartColor[] | undefined;
500
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | (import("csstype").Property.BorderInlineStartStyle | undefined)[] | import("csstype").Property.BorderInlineStartStyle[] | undefined;
501
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | (import("csstype").Property.MozBorderTopColors | undefined)[] | import("csstype").Property.MozBorderTopColors[] | undefined;
502
+ MozBoxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
503
+ MozColumnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
504
+ MozColumnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
505
+ MozColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
506
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
507
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
508
+ MozColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
509
+ MozColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
510
+ MozContextProperties?: import("csstype").Property.MozContextProperties | (import("csstype").Property.MozContextProperties | undefined)[] | import("csstype").Property.MozContextProperties[] | undefined;
511
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
512
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | (import("csstype").Property.FontLanguageOverride | undefined)[] | import("csstype").Property.FontLanguageOverride[] | undefined;
513
+ MozHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
514
+ MozImageRegion?: import("csstype").Property.MozImageRegion | (import("csstype").Property.MozImageRegion | undefined)[] | import("csstype").Property.MozImageRegion[] | undefined;
515
+ MozMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
516
+ MozMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
517
+ MozOrient?: import("csstype").Property.MozOrient | (import("csstype").Property.MozOrient | undefined)[] | import("csstype").Property.MozOrient[] | undefined;
518
+ MozOsxFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
519
+ MozPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
520
+ MozPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
521
+ MozPerspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
522
+ MozPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
523
+ MozStackSizing?: import("csstype").Property.MozStackSizing | (import("csstype").Property.MozStackSizing | undefined)[] | import("csstype").Property.MozStackSizing[] | undefined;
524
+ MozTabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
525
+ MozTextBlink?: import("csstype").Property.MozTextBlink | (import("csstype").Property.MozTextBlink | undefined)[] | import("csstype").Property.MozTextBlink[] | undefined;
526
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
527
+ MozTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
528
+ MozTransformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
529
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
530
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
531
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
532
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
533
+ MozUserFocus?: import("csstype").Property.MozUserFocus | (import("csstype").Property.MozUserFocus | undefined)[] | import("csstype").Property.MozUserFocus[] | undefined;
534
+ MozUserModify?: import("csstype").Property.MozUserModify | (import("csstype").Property.MozUserModify | undefined)[] | import("csstype").Property.MozUserModify[] | undefined;
535
+ MozUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
536
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | (import("csstype").Property.MozWindowDragging | undefined)[] | import("csstype").Property.MozWindowDragging[] | undefined;
537
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | (import("csstype").Property.MozWindowShadow | undefined)[] | import("csstype").Property.MozWindowShadow[] | undefined;
538
+ msAccelerator?: import("csstype").Property.MsAccelerator | (import("csstype").Property.MsAccelerator | undefined)[] | import("csstype").Property.MsAccelerator[] | undefined;
539
+ msAlignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
540
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | (import("csstype").Property.MsBlockProgression | undefined)[] | import("csstype").Property.MsBlockProgression[] | undefined;
541
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | (import("csstype").Property.MsContentZoomChaining | undefined)[] | import("csstype").Property.MsContentZoomChaining[] | undefined;
542
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | (import("csstype").Property.MsContentZoomLimitMax | undefined)[] | import("csstype").Property.MsContentZoomLimitMax[] | undefined;
543
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | (import("csstype").Property.MsContentZoomLimitMin | undefined)[] | import("csstype").Property.MsContentZoomLimitMin[] | undefined;
544
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | (import("csstype").Property.MsContentZoomSnapPoints | undefined)[] | import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
545
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | (import("csstype").Property.MsContentZoomSnapType | undefined)[] | import("csstype").Property.MsContentZoomSnapType[] | undefined;
546
+ msContentZooming?: import("csstype").Property.MsContentZooming | (import("csstype").Property.MsContentZooming | undefined)[] | import("csstype").Property.MsContentZooming[] | undefined;
547
+ msFilter?: import("csstype").Property.MsFilter | (import("csstype").Property.MsFilter | undefined)[] | import("csstype").Property.MsFilter[] | undefined;
548
+ msFlexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
549
+ msFlexPositive?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
550
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | (import("csstype").Property.MsFlowFrom | undefined)[] | import("csstype").Property.MsFlowFrom[] | undefined;
551
+ msFlowInto?: import("csstype").Property.MsFlowInto | (import("csstype").Property.MsFlowInto | undefined)[] | import("csstype").Property.MsFlowInto[] | undefined;
552
+ msGridColumns?: (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | (import("csstype").Property.MsGridColumns<string | number> | undefined)[] | undefined;
553
+ msGridRows?: (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | (import("csstype").Property.MsGridRows<string | number> | undefined)[] | undefined;
554
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | (import("csstype").Property.MsHighContrastAdjust | undefined)[] | import("csstype").Property.MsHighContrastAdjust[] | undefined;
555
+ msHyphenateLimitChars?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | (import("csstype").Property.MsHyphenateLimitChars | undefined)[] | undefined;
556
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | (import("csstype").Property.MsHyphenateLimitLines | undefined)[] | (import("csstype").Globals | "no-limit")[] | undefined;
557
+ msHyphenateLimitZone?: (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | (import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined)[] | undefined;
558
+ msHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
559
+ msImeAlign?: import("csstype").Property.MsImeAlign | (import("csstype").Property.MsImeAlign | undefined)[] | import("csstype").Property.MsImeAlign[] | undefined;
560
+ msJustifySelf?: import("csstype").Property.JustifySelf | (import("csstype").Property.JustifySelf | undefined)[] | import("csstype").Property.JustifySelf[] | undefined;
561
+ msLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
562
+ msOrder?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
563
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | (import("csstype").Property.MsOverflowStyle | undefined)[] | import("csstype").Property.MsOverflowStyle[] | undefined;
564
+ msOverflowX?: import("csstype").Property.OverflowX | (import("csstype").Property.OverflowX | undefined)[] | import("csstype").Property.OverflowX[] | undefined;
565
+ msOverflowY?: import("csstype").Property.OverflowY | (import("csstype").Property.OverflowY | undefined)[] | import("csstype").Property.OverflowY[] | undefined;
566
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | (import("csstype").Property.MsScrollChaining | undefined)[] | import("csstype").Property.MsScrollChaining[] | undefined;
567
+ msScrollLimitXMax?: string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | (import("csstype").Property.MsScrollLimitXMax<string | number> | undefined)[] | undefined;
568
+ msScrollLimitXMin?: string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | (import("csstype").Property.MsScrollLimitXMin<string | number> | undefined)[] | undefined;
569
+ msScrollLimitYMax?: string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | (import("csstype").Property.MsScrollLimitYMax<string | number> | undefined)[] | undefined;
570
+ msScrollLimitYMin?: string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | (import("csstype").Property.MsScrollLimitYMin<string | number> | undefined)[] | undefined;
571
+ msScrollRails?: import("csstype").Property.MsScrollRails | (import("csstype").Property.MsScrollRails | undefined)[] | import("csstype").Property.MsScrollRails[] | undefined;
572
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | (import("csstype").Property.MsScrollSnapPointsX | undefined)[] | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
573
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | (import("csstype").Property.MsScrollSnapPointsY | undefined)[] | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
574
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | (import("csstype").Property.MsScrollSnapType | undefined)[] | import("csstype").Property.MsScrollSnapType[] | undefined;
575
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | (import("csstype").Property.MsScrollTranslation | undefined)[] | import("csstype").Property.MsScrollTranslation[] | undefined;
576
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | (import("csstype").Property.MsScrollbar3dlightColor | undefined)[] | import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
577
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | (import("csstype").Property.MsScrollbarArrowColor | undefined)[] | import("csstype").Property.MsScrollbarArrowColor[] | undefined;
578
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | (import("csstype").Property.MsScrollbarBaseColor | undefined)[] | import("csstype").Property.MsScrollbarBaseColor[] | undefined;
579
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | (import("csstype").Property.MsScrollbarDarkshadowColor | undefined)[] | import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
580
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | (import("csstype").Property.MsScrollbarFaceColor | undefined)[] | import("csstype").Property.MsScrollbarFaceColor[] | undefined;
581
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | (import("csstype").Property.MsScrollbarHighlightColor | undefined)[] | import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
582
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | (import("csstype").Property.MsScrollbarShadowColor | undefined)[] | import("csstype").Property.MsScrollbarShadowColor[] | undefined;
583
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | (import("csstype").Property.MsTextAutospace | undefined)[] | import("csstype").Property.MsTextAutospace[] | undefined;
584
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
585
+ msTextOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
586
+ msTouchAction?: import("csstype").Property.TouchAction | (import("csstype").Property.TouchAction | undefined)[] | import("csstype").Property.TouchAction[] | undefined;
587
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | (import("csstype").Property.MsTouchSelect | undefined)[] | import("csstype").Property.MsTouchSelect[] | undefined;
588
+ msTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
589
+ msTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
590
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
591
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
592
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
593
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
594
+ msUserSelect?: import("csstype").Property.MsUserSelect | (import("csstype").Property.MsUserSelect | undefined)[] | import("csstype").Property.MsUserSelect[] | undefined;
595
+ msWordBreak?: import("csstype").Property.WordBreak | (import("csstype").Property.WordBreak | undefined)[] | import("csstype").Property.WordBreak[] | undefined;
596
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | (import("csstype").Property.MsWrapFlow | undefined)[] | import("csstype").Property.MsWrapFlow[] | undefined;
597
+ msWrapMargin?: string[] | import("csstype").Property.MsWrapMargin<string | number> | (import("csstype").Property.MsWrapMargin<string | number> | undefined)[] | undefined;
598
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | (import("csstype").Property.MsWrapThrough | undefined)[] | import("csstype").Property.MsWrapThrough[] | undefined;
599
+ msWritingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
600
+ WebkitAlignContent?: import("csstype").Property.AlignContent | (import("csstype").Property.AlignContent | undefined)[] | import("csstype").Property.AlignContent[] | undefined;
601
+ WebkitAlignItems?: import("csstype").Property.AlignItems | (import("csstype").Property.AlignItems | undefined)[] | import("csstype").Property.AlignItems[] | undefined;
602
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
603
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
604
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
605
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
606
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
607
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
608
+ WebkitAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
609
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
610
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
611
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | (import("csstype").Property.WebkitAppearance | undefined)[] | import("csstype").Property.WebkitAppearance[] | undefined;
612
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | (import("csstype").Property.BackdropFilter | undefined)[] | import("csstype").Property.BackdropFilter[] | undefined;
613
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
614
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
615
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
616
+ WebkitBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
617
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | (import("csstype").Property.WebkitBorderBeforeColor | undefined)[] | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
618
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | (import("csstype").Property.WebkitBorderBeforeStyle | undefined)[] | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
619
+ WebkitBorderBeforeWidth?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | (import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined)[] | undefined;
620
+ WebkitBorderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
621
+ WebkitBorderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
622
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | (import("csstype").Property.BorderImageSlice | undefined)[] | ((string & {}) | import("csstype").Globals)[] | undefined;
623
+ WebkitBorderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
624
+ WebkitBorderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
625
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
626
+ WebkitBoxReflect?: (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | (import("csstype").Property.WebkitBoxReflect<string | number> | undefined)[] | undefined;
627
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
628
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
629
+ WebkitClipPath?: import("csstype").Property.ClipPath | (import("csstype").Property.ClipPath | undefined)[] | import("csstype").Property.ClipPath[] | undefined;
630
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
631
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
632
+ WebkitColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
633
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
634
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
635
+ WebkitColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
636
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | (import("csstype").Property.ColumnSpan | undefined)[] | import("csstype").Property.ColumnSpan[] | undefined;
637
+ WebkitColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
638
+ WebkitFilter?: import("csstype").Property.Filter | (import("csstype").Property.Filter | undefined)[] | import("csstype").Property.Filter[] | undefined;
639
+ WebkitFlexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | (import("csstype").Property.FlexBasis<string | number> | undefined)[] | undefined;
640
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
641
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
642
+ WebkitFlexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | (import("csstype").Property.FlexShrink | undefined)[] | undefined;
643
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | (import("csstype").Property.FlexWrap | undefined)[] | import("csstype").Property.FlexWrap[] | undefined;
644
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
645
+ WebkitFontKerning?: import("csstype").Property.FontKerning | (import("csstype").Property.FontKerning | undefined)[] | import("csstype").Property.FontKerning[] | undefined;
646
+ WebkitFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
647
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | (import("csstype").Property.FontVariantLigatures | undefined)[] | import("csstype").Property.FontVariantLigatures[] | undefined;
648
+ WebkitHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
649
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | (import("csstype").Property.JustifyContent | undefined)[] | import("csstype").Property.JustifyContent[] | undefined;
650
+ WebkitLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
651
+ WebkitLineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | (import("csstype").Property.WebkitLineClamp | undefined)[] | undefined;
652
+ WebkitMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
653
+ WebkitMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
654
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | (import("csstype").Property.WebkitMaskAttachment | undefined)[] | import("csstype").Property.WebkitMaskAttachment[] | undefined;
655
+ WebkitMaskBoxImageOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | (import("csstype").Property.MaskBorderOutset<string | number> | undefined)[] | undefined;
656
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | (import("csstype").Property.MaskBorderRepeat | undefined)[] | import("csstype").Property.MaskBorderRepeat[] | undefined;
657
+ WebkitMaskBoxImageSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | (import("csstype").Property.MaskBorderSlice | undefined)[] | undefined;
658
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | (import("csstype").Property.MaskBorderSource | undefined)[] | import("csstype").Property.MaskBorderSource[] | undefined;
659
+ WebkitMaskBoxImageWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | (import("csstype").Property.MaskBorderWidth<string | number> | undefined)[] | undefined;
660
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | (import("csstype").Property.WebkitMaskClip | undefined)[] | import("csstype").Property.WebkitMaskClip[] | undefined;
661
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | (import("csstype").Property.WebkitMaskComposite | undefined)[] | import("csstype").Property.WebkitMaskComposite[] | undefined;
662
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | (import("csstype").Property.WebkitMaskImage | undefined)[] | import("csstype").Property.WebkitMaskImage[] | undefined;
663
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | (import("csstype").Property.WebkitMaskOrigin | undefined)[] | import("csstype").Property.WebkitMaskOrigin[] | undefined;
664
+ WebkitMaskPosition?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | (import("csstype").Property.WebkitMaskPosition<string | number> | undefined)[] | undefined;
665
+ WebkitMaskPositionX?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | (import("csstype").Property.WebkitMaskPositionX<string | number> | undefined)[] | undefined;
666
+ WebkitMaskPositionY?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | (import("csstype").Property.WebkitMaskPositionY<string | number> | undefined)[] | undefined;
667
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | (import("csstype").Property.WebkitMaskRepeat | undefined)[] | import("csstype").Property.WebkitMaskRepeat[] | undefined;
668
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | (import("csstype").Property.WebkitMaskRepeatX | undefined)[] | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
669
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | (import("csstype").Property.WebkitMaskRepeatY | undefined)[] | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
670
+ WebkitMaskSize?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | (import("csstype").Property.WebkitMaskSize<string | number> | undefined)[] | undefined;
671
+ WebkitMaxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | (import("csstype").Property.MaxInlineSize<string | number> | undefined)[] | undefined;
672
+ WebkitOrder?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
673
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | (import("csstype").Property.WebkitOverflowScrolling | undefined)[] | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
674
+ WebkitPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
675
+ WebkitPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
676
+ WebkitPerspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
677
+ WebkitPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
678
+ WebkitPrintColorAdjust?: import("csstype").Property.ColorAdjust | (import("csstype").Property.ColorAdjust | undefined)[] | import("csstype").Property.ColorAdjust[] | undefined;
679
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | (import("csstype").Property.RubyPosition | undefined)[] | import("csstype").Property.RubyPosition[] | undefined;
680
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | (import("csstype").Property.ScrollSnapType | undefined)[] | import("csstype").Property.ScrollSnapType[] | undefined;
681
+ WebkitShapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | (import("csstype").Property.ShapeMargin<string | number> | undefined)[] | undefined;
682
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | (import("csstype").Property.WebkitTapHighlightColor | undefined)[] | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
683
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
684
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
685
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
686
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | (import("csstype").Property.TextDecorationSkip | undefined)[] | import("csstype").Property.TextDecorationSkip[] | undefined;
687
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
688
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | (import("csstype").Property.TextEmphasisColor | undefined)[] | import("csstype").Property.TextEmphasisColor[] | undefined;
689
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | (import("csstype").Property.TextEmphasisPosition | undefined)[] | import("csstype").Property.TextEmphasisPosition[] | undefined;
690
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | (import("csstype").Property.TextEmphasisStyle | undefined)[] | import("csstype").Property.TextEmphasisStyle[] | undefined;
691
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | (import("csstype").Property.WebkitTextFillColor | undefined)[] | import("csstype").Property.WebkitTextFillColor[] | undefined;
692
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | (import("csstype").Property.TextOrientation | undefined)[] | import("csstype").Property.TextOrientation[] | undefined;
693
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
694
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | (import("csstype").Property.WebkitTextStrokeColor | undefined)[] | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
695
+ WebkitTextStrokeWidth?: string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | (import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined)[] | undefined;
696
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | (import("csstype").Property.TextUnderlinePosition | undefined)[] | import("csstype").Property.TextUnderlinePosition[] | undefined;
697
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | (import("csstype").Property.WebkitTouchCallout | undefined)[] | import("csstype").Property.WebkitTouchCallout[] | undefined;
698
+ WebkitTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
699
+ WebkitTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
700
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
701
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
702
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
703
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
704
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
705
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | (import("csstype").Property.WebkitUserModify | undefined)[] | import("csstype").Property.WebkitUserModify[] | undefined;
706
+ WebkitUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
707
+ WebkitWritingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
708
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
709
+ MozBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
710
+ MozColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
711
+ MozColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
712
+ MozTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
713
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | (import("csstype").Property.MsContentZoomLimit | undefined)[] | import("csstype").Property.MsContentZoomLimit[] | undefined;
714
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | (import("csstype").Property.MsContentZoomSnap | undefined)[] | import("csstype").Property.MsContentZoomSnap[] | undefined;
715
+ msFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
716
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | (import("csstype").Property.MsScrollLimit | undefined)[] | import("csstype").Property.MsScrollLimit[] | undefined;
717
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | (import("csstype").Property.MsScrollSnapX | undefined)[] | import("csstype").Property.MsScrollSnapX[] | undefined;
718
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | (import("csstype").Property.MsScrollSnapY | undefined)[] | import("csstype").Property.MsScrollSnapY[] | undefined;
719
+ msTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
720
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
721
+ WebkitBorderBefore?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | (import("csstype").Property.WebkitBorderBefore<string | number> | undefined)[] | undefined;
722
+ WebkitBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
723
+ WebkitBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
724
+ WebkitColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
725
+ WebkitColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
726
+ WebkitFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
727
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | (import("csstype").Property.FlexFlow | undefined)[] | import("csstype").Property.FlexFlow[] | undefined;
728
+ WebkitMask?: (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | (import("csstype").Property.WebkitMask<string | number> | undefined)[] | undefined;
729
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | (import("csstype").Property.MaskBorder | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
730
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | (import("csstype").Property.TextEmphasis | undefined)[] | import("csstype").Property.TextEmphasis[] | undefined;
731
+ WebkitTextStroke?: (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | (import("csstype").Property.WebkitTextStroke<string | number> | undefined)[] | undefined;
732
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
733
+ azimuth?: import("csstype").Property.Azimuth | (import("csstype").Property.Azimuth | undefined)[] | import("csstype").Property.Azimuth[] | undefined;
734
+ boxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
735
+ boxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
736
+ boxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
737
+ boxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
738
+ boxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
739
+ boxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
740
+ boxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
741
+ boxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
742
+ clip?: import("csstype").Property.Clip | (import("csstype").Property.Clip | undefined)[] | import("csstype").Property.Clip[] | undefined;
743
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | (import("csstype").Property.FontVariantAlternates | undefined)[] | import("csstype").Property.FontVariantAlternates[] | undefined;
744
+ gridColumnGap?: (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | (import("csstype").Property.GridColumnGap<string | number> | undefined)[] | undefined;
745
+ gridGap?: (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | (import("csstype").Property.GridGap<string | number> | undefined)[] | undefined;
746
+ gridRowGap?: (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | (import("csstype").Property.GridRowGap<string | number> | undefined)[] | undefined;
747
+ imeMode?: import("csstype").Property.ImeMode | (import("csstype").Property.ImeMode | undefined)[] | import("csstype").Property.ImeMode[] | undefined;
748
+ offsetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | (import("csstype").Property.InsetBlock<string | number> | undefined)[] | undefined;
749
+ offsetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | (import("csstype").Property.InsetBlockEnd<string | number> | undefined)[] | undefined;
750
+ offsetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | (import("csstype").Property.InsetBlockStart<string | number> | undefined)[] | undefined;
751
+ offsetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | (import("csstype").Property.InsetInline<string | number> | undefined)[] | undefined;
752
+ offsetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | (import("csstype").Property.InsetInlineEnd<string | number> | undefined)[] | undefined;
753
+ offsetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | (import("csstype").Property.InsetInlineStart<string | number> | undefined)[] | undefined;
754
+ scrollSnapCoordinate?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | (import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined)[] | undefined;
755
+ scrollSnapDestination?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | (import("csstype").Property.ScrollSnapDestination<string | number> | undefined)[] | undefined;
756
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | (import("csstype").Property.ScrollSnapPointsX | undefined)[] | import("csstype").Property.ScrollSnapPointsX[] | undefined;
757
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | (import("csstype").Property.ScrollSnapPointsY | undefined)[] | import("csstype").Property.ScrollSnapPointsY[] | undefined;
758
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | (import("csstype").Property.ScrollSnapTypeX | undefined)[] | import("csstype").Property.ScrollSnapTypeX[] | undefined;
759
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | (import("csstype").Property.ScrollSnapTypeY | undefined)[] | import("csstype").Property.ScrollSnapTypeY[] | undefined;
760
+ scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | (import("csstype").Property.MsScrollbarTrackColor | undefined)[] | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
761
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
762
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
763
+ KhtmlBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
764
+ KhtmlBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
765
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
766
+ KhtmlBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
767
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
768
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
769
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
770
+ KhtmlOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
771
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
772
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
773
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
774
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
775
+ MozBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
776
+ MozBinding?: import("csstype").Property.MozBinding | (import("csstype").Property.MozBinding | undefined)[] | import("csstype").Property.MozBinding[] | undefined;
777
+ MozBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
778
+ MozBorderRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
779
+ MozBorderRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
780
+ MozBorderRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
781
+ MozBorderRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
782
+ MozBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
783
+ MozBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
784
+ MozBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
785
+ MozBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
786
+ MozBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
787
+ MozBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
788
+ MozBoxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
789
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | (import("csstype").Property.MozFloatEdge | undefined)[] | import("csstype").Property.MozFloatEdge[] | undefined;
790
+ MozForceBrokenImageIcon?: import("csstype").Globals[] | import("csstype").Property.MozForceBrokenImageIcon | (import("csstype").Property.MozForceBrokenImageIcon | undefined)[] | undefined;
791
+ MozOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
792
+ MozOutline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | (import("csstype").Property.Outline<string | number> | undefined)[] | undefined;
793
+ MozOutlineColor?: import("csstype").Property.OutlineColor | (import("csstype").Property.OutlineColor | undefined)[] | import("csstype").Property.OutlineColor[] | undefined;
794
+ MozOutlineRadius?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | (import("csstype").Property.MozOutlineRadius<string | number> | undefined)[] | undefined;
795
+ MozOutlineRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | (import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined)[] | undefined;
796
+ MozOutlineRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | (import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined)[] | undefined;
797
+ MozOutlineRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | (import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined)[] | undefined;
798
+ MozOutlineRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | (import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined)[] | undefined;
799
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | (import("csstype").Property.OutlineStyle | undefined)[] | import("csstype").Property.OutlineStyle[] | undefined;
800
+ MozOutlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | (import("csstype").Property.OutlineWidth<string | number> | undefined)[] | undefined;
801
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | (import("csstype").Property.TextAlignLast | undefined)[] | import("csstype").Property.TextAlignLast[] | undefined;
802
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
803
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
804
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
805
+ MozUserInput?: import("csstype").Property.MozUserInput | (import("csstype").Property.MozUserInput | undefined)[] | import("csstype").Property.MozUserInput[] | undefined;
806
+ msImeMode?: import("csstype").Property.ImeMode | (import("csstype").Property.ImeMode | undefined)[] | import("csstype").Property.ImeMode[] | undefined;
807
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | (import("csstype").Property.MsScrollbarTrackColor | undefined)[] | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
808
+ OAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
809
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
810
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
811
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
812
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
813
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
814
+ OAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
815
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
816
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
817
+ OBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
818
+ OBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
819
+ OObjectFit?: import("csstype").Property.ObjectFit | (import("csstype").Property.ObjectFit | undefined)[] | import("csstype").Property.ObjectFit[] | undefined;
820
+ OObjectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | (import("csstype").Property.ObjectPosition<string | number> | undefined)[] | undefined;
821
+ OTabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
822
+ OTextOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
823
+ OTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
824
+ OTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
825
+ OTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
826
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
827
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
828
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
829
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
830
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
831
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
832
+ WebkitBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
833
+ WebkitBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
834
+ WebkitBoxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
835
+ WebkitBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
836
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
837
+ WebkitBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
838
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | (import("csstype").Property.ScrollSnapPointsX | undefined)[] | import("csstype").Property.ScrollSnapPointsX[] | undefined;
839
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | (import("csstype").Property.ScrollSnapPointsY | undefined)[] | import("csstype").Property.ScrollSnapPointsY[] | undefined;
840
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | (import("csstype").Property.AlignmentBaseline | undefined)[] | import("csstype").Property.AlignmentBaseline[] | undefined;
841
+ baselineShift?: (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | (import("csstype").Property.BaselineShift<string | number> | undefined)[] | undefined;
842
+ clipRule?: import("csstype").Property.ClipRule | (import("csstype").Property.ClipRule | undefined)[] | import("csstype").Property.ClipRule[] | undefined;
843
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | (import("csstype").Property.ColorInterpolation | undefined)[] | import("csstype").Property.ColorInterpolation[] | undefined;
844
+ colorRendering?: import("csstype").Property.ColorRendering | (import("csstype").Property.ColorRendering | undefined)[] | import("csstype").Property.ColorRendering[] | undefined;
845
+ dominantBaseline?: import("csstype").Property.DominantBaseline | (import("csstype").Property.DominantBaseline | undefined)[] | import("csstype").Property.DominantBaseline[] | undefined;
846
+ fill?: import("csstype").Property.Fill | (import("csstype").Property.Fill | undefined)[] | import("csstype").Property.Fill[] | undefined;
847
+ fillOpacity?: import("csstype").Globals[] | import("csstype").Property.FillOpacity | (import("csstype").Property.FillOpacity | undefined)[] | undefined;
848
+ fillRule?: import("csstype").Property.FillRule | (import("csstype").Property.FillRule | undefined)[] | import("csstype").Property.FillRule[] | undefined;
849
+ floodColor?: import("csstype").Property.FloodColor | (import("csstype").Property.FloodColor | undefined)[] | import("csstype").Property.FloodColor[] | undefined;
850
+ floodOpacity?: import("csstype").Globals[] | import("csstype").Property.FloodOpacity | (import("csstype").Property.FloodOpacity | undefined)[] | undefined;
851
+ glyphOrientationVertical?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | (import("csstype").Property.GlyphOrientationVertical | undefined)[] | undefined;
852
+ lightingColor?: import("csstype").Property.LightingColor | (import("csstype").Property.LightingColor | undefined)[] | import("csstype").Property.LightingColor[] | undefined;
853
+ marker?: import("csstype").Property.Marker | (import("csstype").Property.Marker | undefined)[] | import("csstype").Property.Marker[] | undefined;
854
+ markerEnd?: import("csstype").Property.MarkerEnd | (import("csstype").Property.MarkerEnd | undefined)[] | import("csstype").Property.MarkerEnd[] | undefined;
855
+ markerMid?: import("csstype").Property.MarkerMid | (import("csstype").Property.MarkerMid | undefined)[] | import("csstype").Property.MarkerMid[] | undefined;
856
+ markerStart?: import("csstype").Property.MarkerStart | (import("csstype").Property.MarkerStart | undefined)[] | import("csstype").Property.MarkerStart[] | undefined;
857
+ shapeRendering?: import("csstype").Property.ShapeRendering | (import("csstype").Property.ShapeRendering | undefined)[] | import("csstype").Property.ShapeRendering[] | undefined;
858
+ stopColor?: import("csstype").Property.StopColor | (import("csstype").Property.StopColor | undefined)[] | import("csstype").Property.StopColor[] | undefined;
859
+ stopOpacity?: import("csstype").Globals[] | import("csstype").Property.StopOpacity | (import("csstype").Property.StopOpacity | undefined)[] | undefined;
860
+ stroke?: import("csstype").Property.Stroke | (import("csstype").Property.Stroke | undefined)[] | import("csstype").Property.Stroke[] | undefined;
861
+ strokeDasharray?: (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | (import("csstype").Property.StrokeDasharray<string | number> | undefined)[] | undefined;
862
+ strokeDashoffset?: (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | (import("csstype").Property.StrokeDashoffset<string | number> | undefined)[] | undefined;
863
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | (import("csstype").Property.StrokeLinecap | undefined)[] | import("csstype").Property.StrokeLinecap[] | undefined;
864
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | (import("csstype").Property.StrokeLinejoin | undefined)[] | import("csstype").Property.StrokeLinejoin[] | undefined;
865
+ strokeMiterlimit?: import("csstype").Globals[] | import("csstype").Property.StrokeMiterlimit | (import("csstype").Property.StrokeMiterlimit | undefined)[] | undefined;
866
+ strokeOpacity?: import("csstype").Globals[] | import("csstype").Property.StrokeOpacity | (import("csstype").Property.StrokeOpacity | undefined)[] | undefined;
867
+ strokeWidth?: (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | (import("csstype").Property.StrokeWidth<string | number> | undefined)[] | undefined;
868
+ textAnchor?: import("csstype").Property.TextAnchor | (import("csstype").Property.TextAnchor | undefined)[] | import("csstype").Property.TextAnchor[] | undefined;
869
+ vectorEffect?: import("csstype").Property.VectorEffect | (import("csstype").Property.VectorEffect | undefined)[] | import("csstype").Property.VectorEffect[] | undefined;
870
+ ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
871
+ ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
872
+ ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
873
+ "::cue"?: import("@emotion/serialize").CSSObject | undefined;
874
+ "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
875
+ "::part"?: import("@emotion/serialize").CSSObject | undefined;
876
+ "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
877
+ ":dir"?: import("@emotion/serialize").CSSObject | undefined;
878
+ ":has"?: import("@emotion/serialize").CSSObject | undefined;
879
+ ":host"?: import("@emotion/serialize").CSSObject | undefined;
880
+ ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
881
+ ":is"?: import("@emotion/serialize").CSSObject | undefined;
882
+ ":lang"?: import("@emotion/serialize").CSSObject | undefined;
883
+ ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
884
+ ":not"?: import("@emotion/serialize").CSSObject | undefined;
885
+ ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
886
+ ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
887
+ ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
888
+ ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
889
+ ":where"?: import("@emotion/serialize").CSSObject | undefined;
890
+ ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
891
+ ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
892
+ ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
893
+ ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
894
+ ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
895
+ ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
896
+ ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
897
+ ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
898
+ ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
899
+ ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
900
+ ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
901
+ ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
902
+ ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
903
+ "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
904
+ "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
905
+ "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
906
+ "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
907
+ "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
908
+ "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
909
+ "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
910
+ "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
911
+ "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
912
+ "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
913
+ "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
914
+ "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
915
+ "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
916
+ "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
917
+ "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
918
+ "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
919
+ "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
920
+ "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
921
+ "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
922
+ "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
923
+ "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
924
+ "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
925
+ "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
926
+ "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
927
+ "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
928
+ "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
929
+ "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
930
+ "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
931
+ "::after"?: import("@emotion/serialize").CSSObject | undefined;
932
+ "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
933
+ "::before"?: import("@emotion/serialize").CSSObject | undefined;
934
+ "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
935
+ "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
936
+ "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
937
+ "::marker"?: import("@emotion/serialize").CSSObject | undefined;
938
+ "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
939
+ "::selection"?: import("@emotion/serialize").CSSObject | undefined;
940
+ "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
941
+ "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
942
+ ":active"?: import("@emotion/serialize").CSSObject | undefined;
943
+ ":after"?: import("@emotion/serialize").CSSObject | undefined;
944
+ ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
945
+ ":before"?: import("@emotion/serialize").CSSObject | undefined;
946
+ ":blank"?: import("@emotion/serialize").CSSObject | undefined;
947
+ ":checked"?: import("@emotion/serialize").CSSObject | undefined;
948
+ ":current"?: import("@emotion/serialize").CSSObject | undefined;
949
+ ":default"?: import("@emotion/serialize").CSSObject | undefined;
950
+ ":defined"?: import("@emotion/serialize").CSSObject | undefined;
951
+ ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
952
+ ":empty"?: import("@emotion/serialize").CSSObject | undefined;
953
+ ":enabled"?: import("@emotion/serialize").CSSObject | undefined;
954
+ ":first"?: import("@emotion/serialize").CSSObject | undefined;
955
+ ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
956
+ ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
957
+ ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
958
+ ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
959
+ ":focus"?: import("@emotion/serialize").CSSObject | undefined;
960
+ ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
961
+ ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
962
+ ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
963
+ ":future"?: import("@emotion/serialize").CSSObject | undefined;
964
+ ":hover"?: import("@emotion/serialize").CSSObject | undefined;
965
+ ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
966
+ ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
967
+ ":invalid"?: import("@emotion/serialize").CSSObject | undefined;
968
+ ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
969
+ ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
970
+ ":left"?: import("@emotion/serialize").CSSObject | undefined;
971
+ ":link"?: import("@emotion/serialize").CSSObject | undefined;
972
+ ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
973
+ ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
974
+ ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
975
+ ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
976
+ ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
977
+ ":optional"?: import("@emotion/serialize").CSSObject | undefined;
978
+ ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
979
+ ":past"?: import("@emotion/serialize").CSSObject | undefined;
980
+ ":paused"?: import("@emotion/serialize").CSSObject | undefined;
981
+ ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
982
+ ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
983
+ ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
984
+ ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
985
+ ":required"?: import("@emotion/serialize").CSSObject | undefined;
986
+ ":right"?: import("@emotion/serialize").CSSObject | undefined;
987
+ ":root"?: import("@emotion/serialize").CSSObject | undefined;
988
+ ":scope"?: import("@emotion/serialize").CSSObject | undefined;
989
+ ":target"?: import("@emotion/serialize").CSSObject | undefined;
990
+ ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
991
+ ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
992
+ ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
993
+ ":valid"?: import("@emotion/serialize").CSSObject | undefined;
994
+ ":visited"?: import("@emotion/serialize").CSSObject | undefined;
995
+ '.wd-icon-fill'?: undefined;
996
+ '> linearGradient > stop'?: undefined;
997
+ };
998
+ transition: "box-shadow 300ms ease-out, background 300ms ease-out";
999
+ boxShadow: "0px 0px 4.9px 0px #FFC2FD, 0px 0px 0.98px 0px #FFF3A8, 0px 0px 1.96px 0px #FEC10B, 0px 0px 2.94px 0px #FEC10B, 0px 0px 4.9px 0px #FD7E00, 0px 0px 7.36px 0px #FC5B05, 0px 0px 9.81px 0px #FFC2FD, 0px 0px 12.26px 0px rgba(255, 194, 253, 0.50)";
1000
+ '.wd-icon-ai-assistant-ingress-button': {
1001
+ '.wd-icon-fill': {
1002
+ transition: "fill 300ms ease-out";
1003
+ };
1004
+ '> linearGradient > stop': {
1005
+ transition: "300ms ease-out";
1006
+ stopColor: "--cnvs-sys-color-fg-ai";
1007
+ };
1008
+ };
1009
+ '&:is(:focus-visible, .focus):not(:disabled, .disabled)': {
1010
+ border: string;
1011
+ alignContent?: import("csstype").Property.AlignContent | (import("csstype").Property.AlignContent | undefined)[] | import("csstype").Property.AlignContent[] | undefined;
1012
+ alignItems?: import("csstype").Property.AlignItems | (import("csstype").Property.AlignItems | undefined)[] | import("csstype").Property.AlignItems[] | undefined;
1013
+ alignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
1014
+ alignTracks?: import("csstype").Property.AlignTracks | (import("csstype").Property.AlignTracks | undefined)[] | import("csstype").Property.AlignTracks[] | undefined;
1015
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
1016
+ animationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
1017
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
1018
+ animationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
1019
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
1020
+ animationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
1021
+ animationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
1022
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
1023
+ appearance?: import("csstype").Property.Appearance | (import("csstype").Property.Appearance | undefined)[] | import("csstype").Property.Appearance[] | undefined;
1024
+ aspectRatio?: import("csstype").Property.AspectRatio | (import("csstype").Property.AspectRatio | undefined)[] | import("csstype").Property.AspectRatio[] | undefined;
1025
+ backdropFilter?: import("csstype").Property.BackdropFilter | (import("csstype").Property.BackdropFilter | undefined)[] | import("csstype").Property.BackdropFilter[] | undefined;
1026
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
1027
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | (import("csstype").Property.BackgroundAttachment | undefined)[] | import("csstype").Property.BackgroundAttachment[] | undefined;
1028
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | (import("csstype").Property.BackgroundBlendMode | undefined)[] | import("csstype").Property.BackgroundBlendMode[] | undefined;
1029
+ backgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
1030
+ backgroundColor?: import("csstype").Property.BackgroundColor | (import("csstype").Property.BackgroundColor | undefined)[] | import("csstype").Property.BackgroundColor[] | undefined;
1031
+ backgroundImage?: import("csstype").Property.BackgroundImage | (import("csstype").Property.BackgroundImage | undefined)[] | import("csstype").Property.BackgroundImage[] | undefined;
1032
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
1033
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | (import("csstype").Property.BackgroundPositionX<string | number> | undefined)[] | (string | (string & {}))[] | undefined;
1034
+ backgroundPositionY?: (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | (import("csstype").Property.BackgroundPositionY<string | number> | undefined)[] | undefined;
1035
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | (import("csstype").Property.BackgroundRepeat | undefined)[] | import("csstype").Property.BackgroundRepeat[] | undefined;
1036
+ backgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
1037
+ blockOverflow?: import("csstype").Property.BlockOverflow | (import("csstype").Property.BlockOverflow | undefined)[] | import("csstype").Property.BlockOverflow[] | undefined;
1038
+ blockSize?: (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | (import("csstype").Property.BlockSize<string | number> | undefined)[] | undefined;
1039
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | (import("csstype").Property.BorderBlockColor | undefined)[] | import("csstype").Property.BorderBlockColor[] | undefined;
1040
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | (import("csstype").Property.BorderBlockEndColor | undefined)[] | import("csstype").Property.BorderBlockEndColor[] | undefined;
1041
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | (import("csstype").Property.BorderBlockEndStyle | undefined)[] | import("csstype").Property.BorderBlockEndStyle[] | undefined;
1042
+ borderBlockEndWidth?: string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | (import("csstype").Property.BorderBlockEndWidth<string | number> | undefined)[] | undefined;
1043
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | (import("csstype").Property.BorderBlockStartColor | undefined)[] | import("csstype").Property.BorderBlockStartColor[] | undefined;
1044
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | (import("csstype").Property.BorderBlockStartStyle | undefined)[] | import("csstype").Property.BorderBlockStartStyle[] | undefined;
1045
+ borderBlockStartWidth?: string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | (import("csstype").Property.BorderBlockStartWidth<string | number> | undefined)[] | undefined;
1046
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | (import("csstype").Property.BorderBlockStyle | undefined)[] | import("csstype").Property.BorderBlockStyle[] | undefined;
1047
+ borderBlockWidth?: string[] | import("csstype").Property.BorderBlockWidth<string | number> | (import("csstype").Property.BorderBlockWidth<string | number> | undefined)[] | undefined;
1048
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | (import("csstype").Property.BorderBottomColor | undefined)[] | import("csstype").Property.BorderBottomColor[] | undefined;
1049
+ borderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
1050
+ borderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
1051
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | (import("csstype").Property.BorderBottomStyle | undefined)[] | import("csstype").Property.BorderBottomStyle[] | undefined;
1052
+ borderBottomWidth?: string[] | import("csstype").Property.BorderBottomWidth<string | number> | (import("csstype").Property.BorderBottomWidth<string | number> | undefined)[] | undefined;
1053
+ borderCollapse?: import("csstype").Property.BorderCollapse | (import("csstype").Property.BorderCollapse | undefined)[] | import("csstype").Property.BorderCollapse[] | undefined;
1054
+ borderEndEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | (import("csstype").Property.BorderEndEndRadius<string | number> | undefined)[] | undefined;
1055
+ borderEndStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | (import("csstype").Property.BorderEndStartRadius<string | number> | undefined)[] | undefined;
1056
+ borderImageOutset?: (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | (import("csstype").Property.BorderImageOutset<string | number> | undefined)[] | undefined;
1057
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | (import("csstype").Property.BorderImageRepeat | undefined)[] | import("csstype").Property.BorderImageRepeat[] | undefined;
1058
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | (import("csstype").Property.BorderImageSlice | undefined)[] | ((string & {}) | import("csstype").Globals)[] | undefined;
1059
+ borderImageSource?: import("csstype").Property.BorderImageSource | (import("csstype").Property.BorderImageSource | undefined)[] | import("csstype").Property.BorderImageSource[] | undefined;
1060
+ borderImageWidth?: (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | (import("csstype").Property.BorderImageWidth<string | number> | undefined)[] | undefined;
1061
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | (import("csstype").Property.BorderInlineColor | undefined)[] | import("csstype").Property.BorderInlineColor[] | undefined;
1062
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | (import("csstype").Property.BorderInlineEndColor | undefined)[] | import("csstype").Property.BorderInlineEndColor[] | undefined;
1063
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | (import("csstype").Property.BorderInlineEndStyle | undefined)[] | import("csstype").Property.BorderInlineEndStyle[] | undefined;
1064
+ borderInlineEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | (import("csstype").Property.BorderInlineEndWidth<string | number> | undefined)[] | undefined;
1065
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | (import("csstype").Property.BorderInlineStartColor | undefined)[] | import("csstype").Property.BorderInlineStartColor[] | undefined;
1066
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | (import("csstype").Property.BorderInlineStartStyle | undefined)[] | import("csstype").Property.BorderInlineStartStyle[] | undefined;
1067
+ borderInlineStartWidth?: string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | (import("csstype").Property.BorderInlineStartWidth<string | number> | undefined)[] | undefined;
1068
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | (import("csstype").Property.BorderInlineStyle | undefined)[] | import("csstype").Property.BorderInlineStyle[] | undefined;
1069
+ borderInlineWidth?: string[] | import("csstype").Property.BorderInlineWidth<string | number> | (import("csstype").Property.BorderInlineWidth<string | number> | undefined)[] | undefined;
1070
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | (import("csstype").Property.BorderLeftColor | undefined)[] | import("csstype").Property.BorderLeftColor[] | undefined;
1071
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | (import("csstype").Property.BorderLeftStyle | undefined)[] | import("csstype").Property.BorderLeftStyle[] | undefined;
1072
+ borderLeftWidth?: string[] | import("csstype").Property.BorderLeftWidth<string | number> | (import("csstype").Property.BorderLeftWidth<string | number> | undefined)[] | undefined;
1073
+ borderRightColor?: import("csstype").Property.BorderRightColor | (import("csstype").Property.BorderRightColor | undefined)[] | import("csstype").Property.BorderRightColor[] | undefined;
1074
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | (import("csstype").Property.BorderRightStyle | undefined)[] | import("csstype").Property.BorderRightStyle[] | undefined;
1075
+ borderRightWidth?: string[] | import("csstype").Property.BorderRightWidth<string | number> | (import("csstype").Property.BorderRightWidth<string | number> | undefined)[] | undefined;
1076
+ borderSpacing?: (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | (import("csstype").Property.BorderSpacing<string | number> | undefined)[] | undefined;
1077
+ borderStartEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | (import("csstype").Property.BorderStartEndRadius<string | number> | undefined)[] | undefined;
1078
+ borderStartStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | (import("csstype").Property.BorderStartStartRadius<string | number> | undefined)[] | undefined;
1079
+ borderTopColor?: import("csstype").Property.BorderTopColor | (import("csstype").Property.BorderTopColor | undefined)[] | import("csstype").Property.BorderTopColor[] | undefined;
1080
+ borderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
1081
+ borderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
1082
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | (import("csstype").Property.BorderTopStyle | undefined)[] | import("csstype").Property.BorderTopStyle[] | undefined;
1083
+ borderTopWidth?: string[] | import("csstype").Property.BorderTopWidth<string | number> | (import("csstype").Property.BorderTopWidth<string | number> | undefined)[] | undefined;
1084
+ bottom?: (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | (import("csstype").Property.Bottom<string | number> | undefined)[] | undefined;
1085
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
1086
+ boxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
1087
+ boxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
1088
+ breakAfter?: import("csstype").Property.BreakAfter | (import("csstype").Property.BreakAfter | undefined)[] | import("csstype").Property.BreakAfter[] | undefined;
1089
+ breakBefore?: import("csstype").Property.BreakBefore | (import("csstype").Property.BreakBefore | undefined)[] | import("csstype").Property.BreakBefore[] | undefined;
1090
+ breakInside?: import("csstype").Property.BreakInside | (import("csstype").Property.BreakInside | undefined)[] | import("csstype").Property.BreakInside[] | undefined;
1091
+ captionSide?: import("csstype").Property.CaptionSide | (import("csstype").Property.CaptionSide | undefined)[] | import("csstype").Property.CaptionSide[] | undefined;
1092
+ caretColor?: import("csstype").Property.CaretColor | (import("csstype").Property.CaretColor | undefined)[] | import("csstype").Property.CaretColor[] | undefined;
1093
+ clear?: import("csstype").Property.Clear | (import("csstype").Property.Clear | undefined)[] | import("csstype").Property.Clear[] | undefined;
1094
+ clipPath?: import("csstype").Property.ClipPath | (import("csstype").Property.ClipPath | undefined)[] | import("csstype").Property.ClipPath[] | undefined;
1095
+ color?: import("csstype").Property.Color | (import("csstype").Property.Color | undefined)[] | import("csstype").Property.Color[] | undefined;
1096
+ colorAdjust?: import("csstype").Property.ColorAdjust | (import("csstype").Property.ColorAdjust | undefined)[] | import("csstype").Property.ColorAdjust[] | undefined;
1097
+ colorScheme?: import("csstype").Property.ColorScheme | (import("csstype").Property.ColorScheme | undefined)[] | import("csstype").Property.ColorScheme[] | undefined;
1098
+ columnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
1099
+ columnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
1100
+ columnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
1101
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
1102
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
1103
+ columnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
1104
+ columnSpan?: import("csstype").Property.ColumnSpan | (import("csstype").Property.ColumnSpan | undefined)[] | import("csstype").Property.ColumnSpan[] | undefined;
1105
+ columnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
1106
+ contain?: import("csstype").Property.Contain | (import("csstype").Property.Contain | undefined)[] | import("csstype").Property.Contain[] | undefined;
1107
+ content?: import("csstype").Property.Content | (import("csstype").Property.Content | undefined)[] | import("csstype").Property.Content[] | undefined;
1108
+ contentVisibility?: import("csstype").Property.ContentVisibility | (import("csstype").Property.ContentVisibility | undefined)[] | import("csstype").Property.ContentVisibility[] | undefined;
1109
+ counterIncrement?: import("csstype").Property.CounterIncrement | (import("csstype").Property.CounterIncrement | undefined)[] | import("csstype").Property.CounterIncrement[] | undefined;
1110
+ counterReset?: import("csstype").Property.CounterReset | (import("csstype").Property.CounterReset | undefined)[] | import("csstype").Property.CounterReset[] | undefined;
1111
+ counterSet?: import("csstype").Property.CounterSet | (import("csstype").Property.CounterSet | undefined)[] | import("csstype").Property.CounterSet[] | undefined;
1112
+ cursor?: import("csstype").Property.Cursor | (import("csstype").Property.Cursor | undefined)[] | import("csstype").Property.Cursor[] | undefined;
1113
+ direction?: import("csstype").Property.Direction | (import("csstype").Property.Direction | undefined)[] | import("csstype").Property.Direction[] | undefined;
1114
+ display?: import("csstype").Property.Display | (import("csstype").Property.Display | undefined)[] | import("csstype").Property.Display[] | undefined;
1115
+ emptyCells?: import("csstype").Property.EmptyCells | (import("csstype").Property.EmptyCells | undefined)[] | import("csstype").Property.EmptyCells[] | undefined;
1116
+ filter?: import("csstype").Property.Filter | (import("csstype").Property.Filter | undefined)[] | import("csstype").Property.Filter[] | undefined;
1117
+ flexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | (import("csstype").Property.FlexBasis<string | number> | undefined)[] | undefined;
1118
+ flexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
1119
+ flexGrow?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
1120
+ flexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | (import("csstype").Property.FlexShrink | undefined)[] | undefined;
1121
+ flexWrap?: import("csstype").Property.FlexWrap | (import("csstype").Property.FlexWrap | undefined)[] | import("csstype").Property.FlexWrap[] | undefined;
1122
+ float?: import("csstype").Property.Float | (import("csstype").Property.Float | undefined)[] | import("csstype").Property.Float[] | undefined;
1123
+ fontFamily?: import("csstype").Property.FontFamily | (import("csstype").Property.FontFamily | undefined)[] | import("csstype").Property.FontFamily[] | undefined;
1124
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
1125
+ fontKerning?: import("csstype").Property.FontKerning | (import("csstype").Property.FontKerning | undefined)[] | import("csstype").Property.FontKerning[] | undefined;
1126
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | (import("csstype").Property.FontLanguageOverride | undefined)[] | import("csstype").Property.FontLanguageOverride[] | undefined;
1127
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | (import("csstype").Property.FontOpticalSizing | undefined)[] | import("csstype").Property.FontOpticalSizing[] | undefined;
1128
+ fontSize?: (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | (import("csstype").Property.FontSize<string | number> | undefined)[] | undefined;
1129
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | (import("csstype").Property.FontSizeAdjust | undefined)[] | ("none" | import("csstype").Globals)[] | undefined;
1130
+ fontSmooth?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
1131
+ fontStretch?: import("csstype").Property.FontStretch | (import("csstype").Property.FontStretch | undefined)[] | import("csstype").Property.FontStretch[] | undefined;
1132
+ fontStyle?: import("csstype").Property.FontStyle | (import("csstype").Property.FontStyle | undefined)[] | import("csstype").Property.FontStyle[] | undefined;
1133
+ fontSynthesis?: import("csstype").Property.FontSynthesis | (import("csstype").Property.FontSynthesis | undefined)[] | import("csstype").Property.FontSynthesis[] | undefined;
1134
+ fontVariant?: import("csstype").Property.FontVariant | (import("csstype").Property.FontVariant | undefined)[] | import("csstype").Property.FontVariant[] | undefined;
1135
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | (import("csstype").Property.FontVariantCaps | undefined)[] | import("csstype").Property.FontVariantCaps[] | undefined;
1136
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | (import("csstype").Property.FontVariantEastAsian | undefined)[] | import("csstype").Property.FontVariantEastAsian[] | undefined;
1137
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | (import("csstype").Property.FontVariantLigatures | undefined)[] | import("csstype").Property.FontVariantLigatures[] | undefined;
1138
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | (import("csstype").Property.FontVariantNumeric | undefined)[] | import("csstype").Property.FontVariantNumeric[] | undefined;
1139
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | (import("csstype").Property.FontVariantPosition | undefined)[] | import("csstype").Property.FontVariantPosition[] | undefined;
1140
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | (import("csstype").Property.FontVariationSettings | undefined)[] | import("csstype").Property.FontVariationSettings[] | undefined;
1141
+ fontWeight?: import("csstype").Property.FontWeight | (import("csstype").Property.FontWeight | undefined)[] | ("bold" | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
1142
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | (import("csstype").Property.ForcedColorAdjust | undefined)[] | import("csstype").Property.ForcedColorAdjust[] | undefined;
1143
+ gridAutoColumns?: (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | (import("csstype").Property.GridAutoColumns<string | number> | undefined)[] | undefined;
1144
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | (import("csstype").Property.GridAutoFlow | undefined)[] | import("csstype").Property.GridAutoFlow[] | undefined;
1145
+ gridAutoRows?: (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | (import("csstype").Property.GridAutoRows<string | number> | undefined)[] | undefined;
1146
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | (import("csstype").Property.GridColumnEnd | undefined)[] | ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
1147
+ gridColumnStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | (import("csstype").Property.GridColumnStart | undefined)[] | undefined;
1148
+ gridRowEnd?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | (import("csstype").Property.GridRowEnd | undefined)[] | undefined;
1149
+ gridRowStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | (import("csstype").Property.GridRowStart | undefined)[] | undefined;
1150
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | (import("csstype").Property.GridTemplateAreas | undefined)[] | import("csstype").Property.GridTemplateAreas[] | undefined;
1151
+ gridTemplateColumns?: (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | (import("csstype").Property.GridTemplateColumns<string | number> | undefined)[] | undefined;
1152
+ gridTemplateRows?: (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | (import("csstype").Property.GridTemplateRows<string | number> | undefined)[] | undefined;
1153
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | (import("csstype").Property.HangingPunctuation | undefined)[] | import("csstype").Property.HangingPunctuation[] | undefined;
1154
+ height?: (string | (string & {}))[] | import("csstype").Property.Height<string | number> | (import("csstype").Property.Height<string | number> | undefined)[] | undefined;
1155
+ hyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
1156
+ imageOrientation?: import("csstype").Property.ImageOrientation | (import("csstype").Property.ImageOrientation | undefined)[] | import("csstype").Property.ImageOrientation[] | undefined;
1157
+ imageRendering?: import("csstype").Property.ImageRendering | (import("csstype").Property.ImageRendering | undefined)[] | import("csstype").Property.ImageRendering[] | undefined;
1158
+ imageResolution?: import("csstype").Property.ImageResolution | (import("csstype").Property.ImageResolution | undefined)[] | import("csstype").Property.ImageResolution[] | undefined;
1159
+ initialLetter?: import("csstype").Property.InitialLetter | (import("csstype").Property.InitialLetter | undefined)[] | ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
1160
+ inlineSize?: (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | (import("csstype").Property.InlineSize<string | number> | undefined)[] | undefined;
1161
+ inset?: (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | (import("csstype").Property.Inset<string | number> | undefined)[] | undefined;
1162
+ insetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | (import("csstype").Property.InsetBlock<string | number> | undefined)[] | undefined;
1163
+ insetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | (import("csstype").Property.InsetBlockEnd<string | number> | undefined)[] | undefined;
1164
+ insetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | (import("csstype").Property.InsetBlockStart<string | number> | undefined)[] | undefined;
1165
+ insetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | (import("csstype").Property.InsetInline<string | number> | undefined)[] | undefined;
1166
+ insetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | (import("csstype").Property.InsetInlineEnd<string | number> | undefined)[] | undefined;
1167
+ insetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | (import("csstype").Property.InsetInlineStart<string | number> | undefined)[] | undefined;
1168
+ isolation?: import("csstype").Property.Isolation | (import("csstype").Property.Isolation | undefined)[] | import("csstype").Property.Isolation[] | undefined;
1169
+ justifyContent?: import("csstype").Property.JustifyContent | (import("csstype").Property.JustifyContent | undefined)[] | import("csstype").Property.JustifyContent[] | undefined;
1170
+ justifyItems?: import("csstype").Property.JustifyItems | (import("csstype").Property.JustifyItems | undefined)[] | import("csstype").Property.JustifyItems[] | undefined;
1171
+ justifySelf?: import("csstype").Property.JustifySelf | (import("csstype").Property.JustifySelf | undefined)[] | import("csstype").Property.JustifySelf[] | undefined;
1172
+ justifyTracks?: import("csstype").Property.JustifyTracks | (import("csstype").Property.JustifyTracks | undefined)[] | import("csstype").Property.JustifyTracks[] | undefined;
1173
+ left?: (string | (string & {}))[] | import("csstype").Property.Left<string | number> | (import("csstype").Property.Left<string | number> | undefined)[] | undefined;
1174
+ letterSpacing?: string[] | import("csstype").Property.LetterSpacing<string | number> | (import("csstype").Property.LetterSpacing<string | number> | undefined)[] | undefined;
1175
+ lineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
1176
+ lineHeight?: (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | (import("csstype").Property.LineHeight<string | number> | undefined)[] | undefined;
1177
+ lineHeightStep?: string[] | import("csstype").Property.LineHeightStep<string | number> | (import("csstype").Property.LineHeightStep<string | number> | undefined)[] | undefined;
1178
+ listStyleImage?: import("csstype").Property.ListStyleImage | (import("csstype").Property.ListStyleImage | undefined)[] | import("csstype").Property.ListStyleImage[] | undefined;
1179
+ listStylePosition?: import("csstype").Property.ListStylePosition | (import("csstype").Property.ListStylePosition | undefined)[] | import("csstype").Property.ListStylePosition[] | undefined;
1180
+ listStyleType?: import("csstype").Property.ListStyleType | (import("csstype").Property.ListStyleType | undefined)[] | import("csstype").Property.ListStyleType[] | undefined;
1181
+ marginBlock?: (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | (import("csstype").Property.MarginBlock<string | number> | undefined)[] | undefined;
1182
+ marginBlockEnd?: (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | (import("csstype").Property.MarginBlockEnd<string | number> | undefined)[] | undefined;
1183
+ marginBlockStart?: (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | (import("csstype").Property.MarginBlockStart<string | number> | undefined)[] | undefined;
1184
+ marginBottom?: (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | (import("csstype").Property.MarginBottom<string | number> | undefined)[] | undefined;
1185
+ marginInline?: (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | (import("csstype").Property.MarginInline<string | number> | undefined)[] | undefined;
1186
+ marginInlineEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
1187
+ marginInlineStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
1188
+ marginLeft?: (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | (import("csstype").Property.MarginLeft<string | number> | undefined)[] | undefined;
1189
+ marginRight?: (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | (import("csstype").Property.MarginRight<string | number> | undefined)[] | undefined;
1190
+ marginTop?: (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | (import("csstype").Property.MarginTop<string | number> | undefined)[] | undefined;
1191
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | (import("csstype").Property.MaskBorderMode | undefined)[] | import("csstype").Property.MaskBorderMode[] | undefined;
1192
+ maskBorderOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | (import("csstype").Property.MaskBorderOutset<string | number> | undefined)[] | undefined;
1193
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | (import("csstype").Property.MaskBorderRepeat | undefined)[] | import("csstype").Property.MaskBorderRepeat[] | undefined;
1194
+ maskBorderSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | (import("csstype").Property.MaskBorderSlice | undefined)[] | undefined;
1195
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | (import("csstype").Property.MaskBorderSource | undefined)[] | import("csstype").Property.MaskBorderSource[] | undefined;
1196
+ maskBorderWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | (import("csstype").Property.MaskBorderWidth<string | number> | undefined)[] | undefined;
1197
+ maskClip?: import("csstype").Property.MaskClip | (import("csstype").Property.MaskClip | undefined)[] | import("csstype").Property.MaskClip[] | undefined;
1198
+ maskComposite?: import("csstype").Property.MaskComposite | (import("csstype").Property.MaskComposite | undefined)[] | import("csstype").Property.MaskComposite[] | undefined;
1199
+ maskImage?: import("csstype").Property.MaskImage | (import("csstype").Property.MaskImage | undefined)[] | import("csstype").Property.MaskImage[] | undefined;
1200
+ maskMode?: import("csstype").Property.MaskMode | (import("csstype").Property.MaskMode | undefined)[] | import("csstype").Property.MaskMode[] | undefined;
1201
+ maskOrigin?: import("csstype").Property.MaskOrigin | (import("csstype").Property.MaskOrigin | undefined)[] | import("csstype").Property.MaskOrigin[] | undefined;
1202
+ maskPosition?: (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | (import("csstype").Property.MaskPosition<string | number> | undefined)[] | undefined;
1203
+ maskRepeat?: import("csstype").Property.MaskRepeat | (import("csstype").Property.MaskRepeat | undefined)[] | import("csstype").Property.MaskRepeat[] | undefined;
1204
+ maskSize?: (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | (import("csstype").Property.MaskSize<string | number> | undefined)[] | undefined;
1205
+ maskType?: import("csstype").Property.MaskType | (import("csstype").Property.MaskType | undefined)[] | import("csstype").Property.MaskType[] | undefined;
1206
+ mathStyle?: import("csstype").Property.MathStyle | (import("csstype").Property.MathStyle | undefined)[] | import("csstype").Property.MathStyle[] | undefined;
1207
+ maxBlockSize?: (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | (import("csstype").Property.MaxBlockSize<string | number> | undefined)[] | undefined;
1208
+ maxHeight?: (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | (import("csstype").Property.MaxHeight<string | number> | undefined)[] | undefined;
1209
+ maxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | (import("csstype").Property.MaxInlineSize<string | number> | undefined)[] | undefined;
1210
+ maxLines?: ("none" | import("csstype").Globals)[] | import("csstype").Property.MaxLines | (import("csstype").Property.MaxLines | undefined)[] | undefined;
1211
+ maxWidth?: (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | (import("csstype").Property.MaxWidth<string | number> | undefined)[] | undefined;
1212
+ minBlockSize?: (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | (import("csstype").Property.MinBlockSize<string | number> | undefined)[] | undefined;
1213
+ minHeight?: (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | (import("csstype").Property.MinHeight<string | number> | undefined)[] | undefined;
1214
+ minInlineSize?: (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | (import("csstype").Property.MinInlineSize<string | number> | undefined)[] | undefined;
1215
+ minWidth?: (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | (import("csstype").Property.MinWidth<string | number> | undefined)[] | undefined;
1216
+ mixBlendMode?: import("csstype").Property.MixBlendMode | (import("csstype").Property.MixBlendMode | undefined)[] | import("csstype").Property.MixBlendMode[] | undefined;
1217
+ motionDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | (import("csstype").Property.OffsetDistance<string | number> | undefined)[] | undefined;
1218
+ motionPath?: import("csstype").Property.OffsetPath | (import("csstype").Property.OffsetPath | undefined)[] | import("csstype").Property.OffsetPath[] | undefined;
1219
+ motionRotation?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
1220
+ objectFit?: import("csstype").Property.ObjectFit | (import("csstype").Property.ObjectFit | undefined)[] | import("csstype").Property.ObjectFit[] | undefined;
1221
+ objectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | (import("csstype").Property.ObjectPosition<string | number> | undefined)[] | undefined;
1222
+ offsetAnchor?: (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | (import("csstype").Property.OffsetAnchor<string | number> | undefined)[] | undefined;
1223
+ offsetDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | (import("csstype").Property.OffsetDistance<string | number> | undefined)[] | undefined;
1224
+ offsetPath?: import("csstype").Property.OffsetPath | (import("csstype").Property.OffsetPath | undefined)[] | import("csstype").Property.OffsetPath[] | undefined;
1225
+ offsetRotate?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
1226
+ offsetRotation?: import("csstype").Property.OffsetRotate | (import("csstype").Property.OffsetRotate | undefined)[] | import("csstype").Property.OffsetRotate[] | undefined;
1227
+ opacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
1228
+ order?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
1229
+ orphans?: import("csstype").Globals[] | import("csstype").Property.Orphans | (import("csstype").Property.Orphans | undefined)[] | undefined;
1230
+ outlineColor?: import("csstype").Property.OutlineColor | (import("csstype").Property.OutlineColor | undefined)[] | import("csstype").Property.OutlineColor[] | undefined;
1231
+ outlineOffset?: string[] | import("csstype").Property.OutlineOffset<string | number> | (import("csstype").Property.OutlineOffset<string | number> | undefined)[] | undefined;
1232
+ outlineStyle?: import("csstype").Property.OutlineStyle | (import("csstype").Property.OutlineStyle | undefined)[] | import("csstype").Property.OutlineStyle[] | undefined;
1233
+ outlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | (import("csstype").Property.OutlineWidth<string | number> | undefined)[] | undefined;
1234
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | (import("csstype").Property.OverflowAnchor | undefined)[] | import("csstype").Property.OverflowAnchor[] | undefined;
1235
+ overflowBlock?: import("csstype").Property.OverflowBlock | (import("csstype").Property.OverflowBlock | undefined)[] | import("csstype").Property.OverflowBlock[] | undefined;
1236
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | (import("csstype").Property.OverflowClipBox | undefined)[] | import("csstype").Property.OverflowClipBox[] | undefined;
1237
+ overflowClipMargin?: (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | (import("csstype").Property.OverflowClipMargin<string | number> | undefined)[] | undefined;
1238
+ overflowInline?: import("csstype").Property.OverflowInline | (import("csstype").Property.OverflowInline | undefined)[] | import("csstype").Property.OverflowInline[] | undefined;
1239
+ overflowWrap?: import("csstype").Property.OverflowWrap | (import("csstype").Property.OverflowWrap | undefined)[] | import("csstype").Property.OverflowWrap[] | undefined;
1240
+ overflowX?: import("csstype").Property.OverflowX | (import("csstype").Property.OverflowX | undefined)[] | import("csstype").Property.OverflowX[] | undefined;
1241
+ overflowY?: import("csstype").Property.OverflowY | (import("csstype").Property.OverflowY | undefined)[] | import("csstype").Property.OverflowY[] | undefined;
1242
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | (import("csstype").Property.OverscrollBehaviorBlock | undefined)[] | import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
1243
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | (import("csstype").Property.OverscrollBehaviorInline | undefined)[] | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
1244
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | (import("csstype").Property.OverscrollBehaviorX | undefined)[] | import("csstype").Property.OverscrollBehaviorX[] | undefined;
1245
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | (import("csstype").Property.OverscrollBehaviorY | undefined)[] | import("csstype").Property.OverscrollBehaviorY[] | undefined;
1246
+ paddingBlock?: (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | (import("csstype").Property.PaddingBlock<string | number> | undefined)[] | undefined;
1247
+ paddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | (import("csstype").Property.PaddingBlockEnd<string | number> | undefined)[] | undefined;
1248
+ paddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | (import("csstype").Property.PaddingBlockStart<string | number> | undefined)[] | undefined;
1249
+ paddingBottom?: (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | (import("csstype").Property.PaddingBottom<string | number> | undefined)[] | undefined;
1250
+ paddingInline?: (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | (import("csstype").Property.PaddingInline<string | number> | undefined)[] | undefined;
1251
+ paddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
1252
+ paddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
1253
+ paddingLeft?: (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | (import("csstype").Property.PaddingLeft<string | number> | undefined)[] | undefined;
1254
+ paddingRight?: (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | (import("csstype").Property.PaddingRight<string | number> | undefined)[] | undefined;
1255
+ paddingTop?: (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | (import("csstype").Property.PaddingTop<string | number> | undefined)[] | undefined;
1256
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | (import("csstype").Property.PageBreakAfter | undefined)[] | import("csstype").Property.PageBreakAfter[] | undefined;
1257
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | (import("csstype").Property.PageBreakBefore | undefined)[] | import("csstype").Property.PageBreakBefore[] | undefined;
1258
+ pageBreakInside?: import("csstype").Property.PageBreakInside | (import("csstype").Property.PageBreakInside | undefined)[] | import("csstype").Property.PageBreakInside[] | undefined;
1259
+ paintOrder?: import("csstype").Property.PaintOrder | (import("csstype").Property.PaintOrder | undefined)[] | import("csstype").Property.PaintOrder[] | undefined;
1260
+ perspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
1261
+ perspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
1262
+ placeContent?: import("csstype").Property.PlaceContent | (import("csstype").Property.PlaceContent | undefined)[] | import("csstype").Property.PlaceContent[] | undefined;
1263
+ pointerEvents?: import("csstype").Property.PointerEvents | (import("csstype").Property.PointerEvents | undefined)[] | import("csstype").Property.PointerEvents[] | undefined;
1264
+ position?: import("csstype").Property.Position | (import("csstype").Property.Position | undefined)[] | import("csstype").Property.Position[] | undefined;
1265
+ quotes?: import("csstype").Property.Quotes | (import("csstype").Property.Quotes | undefined)[] | import("csstype").Property.Quotes[] | undefined;
1266
+ resize?: import("csstype").Property.Resize | (import("csstype").Property.Resize | undefined)[] | import("csstype").Property.Resize[] | undefined;
1267
+ right?: (string | (string & {}))[] | import("csstype").Property.Right<string | number> | (import("csstype").Property.Right<string | number> | undefined)[] | undefined;
1268
+ rotate?: import("csstype").Property.Rotate | (import("csstype").Property.Rotate | undefined)[] | import("csstype").Property.Rotate[] | undefined;
1269
+ rowGap?: (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | (import("csstype").Property.RowGap<string | number> | undefined)[] | undefined;
1270
+ rubyAlign?: import("csstype").Property.RubyAlign | (import("csstype").Property.RubyAlign | undefined)[] | import("csstype").Property.RubyAlign[] | undefined;
1271
+ rubyMerge?: import("csstype").Property.RubyMerge | (import("csstype").Property.RubyMerge | undefined)[] | import("csstype").Property.RubyMerge[] | undefined;
1272
+ rubyPosition?: import("csstype").Property.RubyPosition | (import("csstype").Property.RubyPosition | undefined)[] | import("csstype").Property.RubyPosition[] | undefined;
1273
+ scale?: import("csstype").Property.Scale | (import("csstype").Property.Scale | undefined)[] | ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
1274
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | (import("csstype").Property.ScrollBehavior | undefined)[] | import("csstype").Property.ScrollBehavior[] | undefined;
1275
+ scrollMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | (import("csstype").Property.ScrollMargin<string | number> | undefined)[] | undefined;
1276
+ scrollMarginBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | (import("csstype").Property.ScrollMarginBlock<string | number> | undefined)[] | undefined;
1277
+ scrollMarginBlockEnd?: string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | (import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined)[] | undefined;
1278
+ scrollMarginBlockStart?: string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | (import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined)[] | undefined;
1279
+ scrollMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | (import("csstype").Property.ScrollMarginBottom<string | number> | undefined)[] | undefined;
1280
+ scrollMarginInline?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | (import("csstype").Property.ScrollMarginInline<string | number> | undefined)[] | undefined;
1281
+ scrollMarginInlineEnd?: string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | (import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined)[] | undefined;
1282
+ scrollMarginInlineStart?: string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | (import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined)[] | undefined;
1283
+ scrollMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | (import("csstype").Property.ScrollMarginLeft<string | number> | undefined)[] | undefined;
1284
+ scrollMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | (import("csstype").Property.ScrollMarginRight<string | number> | undefined)[] | undefined;
1285
+ scrollMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | (import("csstype").Property.ScrollMarginTop<string | number> | undefined)[] | undefined;
1286
+ scrollPadding?: (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | (import("csstype").Property.ScrollPadding<string | number> | undefined)[] | undefined;
1287
+ scrollPaddingBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | (import("csstype").Property.ScrollPaddingBlock<string | number> | undefined)[] | undefined;
1288
+ scrollPaddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | (import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined)[] | undefined;
1289
+ scrollPaddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | (import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined)[] | undefined;
1290
+ scrollPaddingBottom?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | (import("csstype").Property.ScrollPaddingBottom<string | number> | undefined)[] | undefined;
1291
+ scrollPaddingInline?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | (import("csstype").Property.ScrollPaddingInline<string | number> | undefined)[] | undefined;
1292
+ scrollPaddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | (import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined)[] | undefined;
1293
+ scrollPaddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | (import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined)[] | undefined;
1294
+ scrollPaddingLeft?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | (import("csstype").Property.ScrollPaddingLeft<string | number> | undefined)[] | undefined;
1295
+ scrollPaddingRight?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | (import("csstype").Property.ScrollPaddingRight<string | number> | undefined)[] | undefined;
1296
+ scrollPaddingTop?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | (import("csstype").Property.ScrollPaddingTop<string | number> | undefined)[] | undefined;
1297
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | (import("csstype").Property.ScrollSnapAlign | undefined)[] | import("csstype").Property.ScrollSnapAlign[] | undefined;
1298
+ scrollSnapMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | (import("csstype").Property.ScrollMargin<string | number> | undefined)[] | undefined;
1299
+ scrollSnapMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | (import("csstype").Property.ScrollMarginBottom<string | number> | undefined)[] | undefined;
1300
+ scrollSnapMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | (import("csstype").Property.ScrollMarginLeft<string | number> | undefined)[] | undefined;
1301
+ scrollSnapMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | (import("csstype").Property.ScrollMarginRight<string | number> | undefined)[] | undefined;
1302
+ scrollSnapMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | (import("csstype").Property.ScrollMarginTop<string | number> | undefined)[] | undefined;
1303
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | (import("csstype").Property.ScrollSnapStop | undefined)[] | import("csstype").Property.ScrollSnapStop[] | undefined;
1304
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | (import("csstype").Property.ScrollSnapType | undefined)[] | import("csstype").Property.ScrollSnapType[] | undefined;
1305
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | (import("csstype").Property.ScrollbarColor | undefined)[] | import("csstype").Property.ScrollbarColor[] | undefined;
1306
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | (import("csstype").Property.ScrollbarGutter | undefined)[] | import("csstype").Property.ScrollbarGutter[] | undefined;
1307
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | (import("csstype").Property.ScrollbarWidth | undefined)[] | import("csstype").Property.ScrollbarWidth[] | undefined;
1308
+ shapeImageThreshold?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | (import("csstype").Property.ShapeImageThreshold | undefined)[] | undefined;
1309
+ shapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | (import("csstype").Property.ShapeMargin<string | number> | undefined)[] | undefined;
1310
+ shapeOutside?: import("csstype").Property.ShapeOutside | (import("csstype").Property.ShapeOutside | undefined)[] | import("csstype").Property.ShapeOutside[] | undefined;
1311
+ tabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
1312
+ tableLayout?: import("csstype").Property.TableLayout | (import("csstype").Property.TableLayout | undefined)[] | import("csstype").Property.TableLayout[] | undefined;
1313
+ textAlign?: import("csstype").Property.TextAlign | (import("csstype").Property.TextAlign | undefined)[] | import("csstype").Property.TextAlign[] | undefined;
1314
+ textAlignLast?: import("csstype").Property.TextAlignLast | (import("csstype").Property.TextAlignLast | undefined)[] | import("csstype").Property.TextAlignLast[] | undefined;
1315
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
1316
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
1317
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
1318
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | (import("csstype").Property.TextDecorationSkip | undefined)[] | import("csstype").Property.TextDecorationSkip[] | undefined;
1319
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | (import("csstype").Property.TextDecorationSkipInk | undefined)[] | import("csstype").Property.TextDecorationSkipInk[] | undefined;
1320
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
1321
+ textDecorationThickness?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | (import("csstype").Property.TextDecorationThickness<string | number> | undefined)[] | undefined;
1322
+ textDecorationWidth?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | (import("csstype").Property.TextDecorationThickness<string | number> | undefined)[] | undefined;
1323
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | (import("csstype").Property.TextEmphasisColor | undefined)[] | import("csstype").Property.TextEmphasisColor[] | undefined;
1324
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | (import("csstype").Property.TextEmphasisPosition | undefined)[] | import("csstype").Property.TextEmphasisPosition[] | undefined;
1325
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | (import("csstype").Property.TextEmphasisStyle | undefined)[] | import("csstype").Property.TextEmphasisStyle[] | undefined;
1326
+ textIndent?: (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | (import("csstype").Property.TextIndent<string | number> | undefined)[] | undefined;
1327
+ textJustify?: import("csstype").Property.TextJustify | (import("csstype").Property.TextJustify | undefined)[] | import("csstype").Property.TextJustify[] | undefined;
1328
+ textOrientation?: import("csstype").Property.TextOrientation | (import("csstype").Property.TextOrientation | undefined)[] | import("csstype").Property.TextOrientation[] | undefined;
1329
+ textOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
1330
+ textRendering?: import("csstype").Property.TextRendering | (import("csstype").Property.TextRendering | undefined)[] | import("csstype").Property.TextRendering[] | undefined;
1331
+ textShadow?: import("csstype").Property.TextShadow | (import("csstype").Property.TextShadow | undefined)[] | import("csstype").Property.TextShadow[] | undefined;
1332
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
1333
+ textTransform?: import("csstype").Property.TextTransform | (import("csstype").Property.TextTransform | undefined)[] | import("csstype").Property.TextTransform[] | undefined;
1334
+ textUnderlineOffset?: (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | (import("csstype").Property.TextUnderlineOffset<string | number> | undefined)[] | undefined;
1335
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | (import("csstype").Property.TextUnderlinePosition | undefined)[] | import("csstype").Property.TextUnderlinePosition[] | undefined;
1336
+ top?: (string | (string & {}))[] | import("csstype").Property.Top<string | number> | (import("csstype").Property.Top<string | number> | undefined)[] | undefined;
1337
+ touchAction?: import("csstype").Property.TouchAction | (import("csstype").Property.TouchAction | undefined)[] | import("csstype").Property.TouchAction[] | undefined;
1338
+ transform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
1339
+ transformBox?: import("csstype").Property.TransformBox | (import("csstype").Property.TransformBox | undefined)[] | import("csstype").Property.TransformBox[] | undefined;
1340
+ transformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
1341
+ transformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
1342
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
1343
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
1344
+ transitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
1345
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
1346
+ translate?: (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | (import("csstype").Property.Translate<string | number> | undefined)[] | undefined;
1347
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | (import("csstype").Property.UnicodeBidi | undefined)[] | import("csstype").Property.UnicodeBidi[] | undefined;
1348
+ userSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
1349
+ verticalAlign?: (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | (import("csstype").Property.VerticalAlign<string | number> | undefined)[] | undefined;
1350
+ visibility?: import("csstype").Property.Visibility | (import("csstype").Property.Visibility | undefined)[] | import("csstype").Property.Visibility[] | undefined;
1351
+ whiteSpace?: import("csstype").Property.WhiteSpace | (import("csstype").Property.WhiteSpace | undefined)[] | import("csstype").Property.WhiteSpace[] | undefined;
1352
+ widows?: import("csstype").Globals[] | import("csstype").Property.Widows | (import("csstype").Property.Widows | undefined)[] | undefined;
1353
+ width?: (string | (string & {}))[] | import("csstype").Property.Width<string | number> | (import("csstype").Property.Width<string | number> | undefined)[] | undefined;
1354
+ willChange?: import("csstype").Property.WillChange | (import("csstype").Property.WillChange | undefined)[] | import("csstype").Property.WillChange[] | undefined;
1355
+ wordBreak?: import("csstype").Property.WordBreak | (import("csstype").Property.WordBreak | undefined)[] | import("csstype").Property.WordBreak[] | undefined;
1356
+ wordSpacing?: (string | (string & {}))[] | import("csstype").Property.WordSpacing<string | number> | (import("csstype").Property.WordSpacing<string | number> | undefined)[] | undefined;
1357
+ wordWrap?: import("csstype").Property.WordWrap | (import("csstype").Property.WordWrap | undefined)[] | import("csstype").Property.WordWrap[] | undefined;
1358
+ writingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
1359
+ zIndex?: ("auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | (import("csstype").Property.ZIndex | undefined)[] | undefined;
1360
+ zoom?: import("csstype").Property.Zoom | (import("csstype").Property.Zoom | undefined)[] | ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
1361
+ all?: import("csstype").Globals | import("csstype").Globals[] | (import("csstype").Globals | undefined)[] | undefined;
1362
+ animation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
1363
+ background?: (string | (string & {}))[] | import("csstype").Property.Background<string | number> | (import("csstype").Property.Background<string | number> | undefined)[] | undefined;
1364
+ backgroundPosition?: (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | (import("csstype").Property.BackgroundPosition<string | number> | undefined)[] | undefined;
1365
+ borderBlock?: (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | (import("csstype").Property.BorderBlock<string | number> | undefined)[] | undefined;
1366
+ borderBlockEnd?: (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | (import("csstype").Property.BorderBlockEnd<string | number> | undefined)[] | undefined;
1367
+ borderBlockStart?: (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | (import("csstype").Property.BorderBlockStart<string | number> | undefined)[] | undefined;
1368
+ borderBottom?: (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | (import("csstype").Property.BorderBottom<string | number> | undefined)[] | undefined;
1369
+ borderColor?: import("csstype").Property.BorderColor | (import("csstype").Property.BorderColor | undefined)[] | import("csstype").Property.BorderColor[] | undefined;
1370
+ borderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
1371
+ borderInline?: (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | (import("csstype").Property.BorderInline<string | number> | undefined)[] | undefined;
1372
+ borderInlineEnd?: (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | (import("csstype").Property.BorderInlineEnd<string | number> | undefined)[] | undefined;
1373
+ borderInlineStart?: (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | (import("csstype").Property.BorderInlineStart<string | number> | undefined)[] | undefined;
1374
+ borderLeft?: (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | (import("csstype").Property.BorderLeft<string | number> | undefined)[] | undefined;
1375
+ borderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
1376
+ borderRight?: (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | (import("csstype").Property.BorderRight<string | number> | undefined)[] | undefined;
1377
+ borderStyle?: import("csstype").Property.BorderStyle | (import("csstype").Property.BorderStyle | undefined)[] | import("csstype").Property.BorderStyle[] | undefined;
1378
+ borderTop?: (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | (import("csstype").Property.BorderTop<string | number> | undefined)[] | undefined;
1379
+ borderWidth?: (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | (import("csstype").Property.BorderWidth<string | number> | undefined)[] | undefined;
1380
+ columnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
1381
+ columns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
1382
+ flex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
1383
+ flexFlow?: import("csstype").Property.FlexFlow | (import("csstype").Property.FlexFlow | undefined)[] | import("csstype").Property.FlexFlow[] | undefined;
1384
+ font?: import("csstype").Property.Font | (import("csstype").Property.Font | undefined)[] | import("csstype").Property.Font[] | undefined;
1385
+ gap?: (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | (import("csstype").Property.Gap<string | number> | undefined)[] | undefined;
1386
+ grid?: import("csstype").Property.Grid | (import("csstype").Property.Grid | undefined)[] | import("csstype").Property.Grid[] | undefined;
1387
+ gridArea?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | (import("csstype").Property.GridArea | undefined)[] | undefined;
1388
+ gridColumn?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | (import("csstype").Property.GridColumn | undefined)[] | undefined;
1389
+ gridRow?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | (import("csstype").Property.GridRow | undefined)[] | undefined;
1390
+ gridTemplate?: import("csstype").Property.GridTemplate | (import("csstype").Property.GridTemplate | undefined)[] | import("csstype").Property.GridTemplate[] | undefined;
1391
+ lineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.LineClamp | (import("csstype").Property.LineClamp | undefined)[] | undefined;
1392
+ listStyle?: import("csstype").Property.ListStyle | (import("csstype").Property.ListStyle | undefined)[] | import("csstype").Property.ListStyle[] | undefined;
1393
+ margin?: (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | (import("csstype").Property.Margin<string | number> | undefined)[] | undefined;
1394
+ mask?: (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | (import("csstype").Property.Mask<string | number> | undefined)[] | undefined;
1395
+ maskBorder?: import("csstype").Property.MaskBorder | (import("csstype").Property.MaskBorder | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
1396
+ motion?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | (import("csstype").Property.Offset<string | number> | undefined)[] | undefined;
1397
+ offset?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | (import("csstype").Property.Offset<string | number> | undefined)[] | undefined;
1398
+ outline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | (import("csstype").Property.Outline<string | number> | undefined)[] | undefined;
1399
+ overflow?: import("csstype").Property.Overflow | (import("csstype").Property.Overflow | undefined)[] | import("csstype").Property.Overflow[] | undefined;
1400
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | (import("csstype").Property.OverscrollBehavior | undefined)[] | import("csstype").Property.OverscrollBehavior[] | undefined;
1401
+ padding?: (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | (import("csstype").Property.Padding<string | number> | undefined)[] | undefined;
1402
+ placeItems?: import("csstype").Property.PlaceItems | (import("csstype").Property.PlaceItems | undefined)[] | import("csstype").Property.PlaceItems[] | undefined;
1403
+ placeSelf?: import("csstype").Property.PlaceSelf | (import("csstype").Property.PlaceSelf | undefined)[] | import("csstype").Property.PlaceSelf[] | undefined;
1404
+ textDecoration?: (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | (import("csstype").Property.TextDecoration<string | number> | undefined)[] | undefined;
1405
+ textEmphasis?: import("csstype").Property.TextEmphasis | (import("csstype").Property.TextEmphasis | undefined)[] | import("csstype").Property.TextEmphasis[] | undefined;
1406
+ transition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
1407
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
1408
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
1409
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
1410
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
1411
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
1412
+ MozAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
1413
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
1414
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
1415
+ MozAppearance?: import("csstype").Property.MozAppearance | (import("csstype").Property.MozAppearance | undefined)[] | import("csstype").Property.MozAppearance[] | undefined;
1416
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
1417
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | (import("csstype").Property.MozBorderBottomColors | undefined)[] | import("csstype").Property.MozBorderBottomColors[] | undefined;
1418
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | (import("csstype").Property.BorderInlineEndColor | undefined)[] | import("csstype").Property.BorderInlineEndColor[] | undefined;
1419
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | (import("csstype").Property.BorderInlineEndStyle | undefined)[] | import("csstype").Property.BorderInlineEndStyle[] | undefined;
1420
+ MozBorderEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | (import("csstype").Property.BorderInlineEndWidth<string | number> | undefined)[] | undefined;
1421
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | (import("csstype").Property.MozBorderLeftColors | undefined)[] | import("csstype").Property.MozBorderLeftColors[] | undefined;
1422
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | (import("csstype").Property.MozBorderRightColors | undefined)[] | import("csstype").Property.MozBorderRightColors[] | undefined;
1423
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | (import("csstype").Property.BorderInlineStartColor | undefined)[] | import("csstype").Property.BorderInlineStartColor[] | undefined;
1424
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | (import("csstype").Property.BorderInlineStartStyle | undefined)[] | import("csstype").Property.BorderInlineStartStyle[] | undefined;
1425
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | (import("csstype").Property.MozBorderTopColors | undefined)[] | import("csstype").Property.MozBorderTopColors[] | undefined;
1426
+ MozBoxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
1427
+ MozColumnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
1428
+ MozColumnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
1429
+ MozColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
1430
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
1431
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
1432
+ MozColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
1433
+ MozColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
1434
+ MozContextProperties?: import("csstype").Property.MozContextProperties | (import("csstype").Property.MozContextProperties | undefined)[] | import("csstype").Property.MozContextProperties[] | undefined;
1435
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
1436
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | (import("csstype").Property.FontLanguageOverride | undefined)[] | import("csstype").Property.FontLanguageOverride[] | undefined;
1437
+ MozHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
1438
+ MozImageRegion?: import("csstype").Property.MozImageRegion | (import("csstype").Property.MozImageRegion | undefined)[] | import("csstype").Property.MozImageRegion[] | undefined;
1439
+ MozMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
1440
+ MozMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
1441
+ MozOrient?: import("csstype").Property.MozOrient | (import("csstype").Property.MozOrient | undefined)[] | import("csstype").Property.MozOrient[] | undefined;
1442
+ MozOsxFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
1443
+ MozPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
1444
+ MozPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
1445
+ MozPerspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
1446
+ MozPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
1447
+ MozStackSizing?: import("csstype").Property.MozStackSizing | (import("csstype").Property.MozStackSizing | undefined)[] | import("csstype").Property.MozStackSizing[] | undefined;
1448
+ MozTabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
1449
+ MozTextBlink?: import("csstype").Property.MozTextBlink | (import("csstype").Property.MozTextBlink | undefined)[] | import("csstype").Property.MozTextBlink[] | undefined;
1450
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
1451
+ MozTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
1452
+ MozTransformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
1453
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
1454
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
1455
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
1456
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
1457
+ MozUserFocus?: import("csstype").Property.MozUserFocus | (import("csstype").Property.MozUserFocus | undefined)[] | import("csstype").Property.MozUserFocus[] | undefined;
1458
+ MozUserModify?: import("csstype").Property.MozUserModify | (import("csstype").Property.MozUserModify | undefined)[] | import("csstype").Property.MozUserModify[] | undefined;
1459
+ MozUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
1460
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | (import("csstype").Property.MozWindowDragging | undefined)[] | import("csstype").Property.MozWindowDragging[] | undefined;
1461
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | (import("csstype").Property.MozWindowShadow | undefined)[] | import("csstype").Property.MozWindowShadow[] | undefined;
1462
+ msAccelerator?: import("csstype").Property.MsAccelerator | (import("csstype").Property.MsAccelerator | undefined)[] | import("csstype").Property.MsAccelerator[] | undefined;
1463
+ msAlignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
1464
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | (import("csstype").Property.MsBlockProgression | undefined)[] | import("csstype").Property.MsBlockProgression[] | undefined;
1465
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | (import("csstype").Property.MsContentZoomChaining | undefined)[] | import("csstype").Property.MsContentZoomChaining[] | undefined;
1466
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | (import("csstype").Property.MsContentZoomLimitMax | undefined)[] | import("csstype").Property.MsContentZoomLimitMax[] | undefined;
1467
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | (import("csstype").Property.MsContentZoomLimitMin | undefined)[] | import("csstype").Property.MsContentZoomLimitMin[] | undefined;
1468
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | (import("csstype").Property.MsContentZoomSnapPoints | undefined)[] | import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
1469
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | (import("csstype").Property.MsContentZoomSnapType | undefined)[] | import("csstype").Property.MsContentZoomSnapType[] | undefined;
1470
+ msContentZooming?: import("csstype").Property.MsContentZooming | (import("csstype").Property.MsContentZooming | undefined)[] | import("csstype").Property.MsContentZooming[] | undefined;
1471
+ msFilter?: import("csstype").Property.MsFilter | (import("csstype").Property.MsFilter | undefined)[] | import("csstype").Property.MsFilter[] | undefined;
1472
+ msFlexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
1473
+ msFlexPositive?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
1474
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | (import("csstype").Property.MsFlowFrom | undefined)[] | import("csstype").Property.MsFlowFrom[] | undefined;
1475
+ msFlowInto?: import("csstype").Property.MsFlowInto | (import("csstype").Property.MsFlowInto | undefined)[] | import("csstype").Property.MsFlowInto[] | undefined;
1476
+ msGridColumns?: (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | (import("csstype").Property.MsGridColumns<string | number> | undefined)[] | undefined;
1477
+ msGridRows?: (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | (import("csstype").Property.MsGridRows<string | number> | undefined)[] | undefined;
1478
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | (import("csstype").Property.MsHighContrastAdjust | undefined)[] | import("csstype").Property.MsHighContrastAdjust[] | undefined;
1479
+ msHyphenateLimitChars?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | (import("csstype").Property.MsHyphenateLimitChars | undefined)[] | undefined;
1480
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | (import("csstype").Property.MsHyphenateLimitLines | undefined)[] | (import("csstype").Globals | "no-limit")[] | undefined;
1481
+ msHyphenateLimitZone?: (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | (import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined)[] | undefined;
1482
+ msHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
1483
+ msImeAlign?: import("csstype").Property.MsImeAlign | (import("csstype").Property.MsImeAlign | undefined)[] | import("csstype").Property.MsImeAlign[] | undefined;
1484
+ msJustifySelf?: import("csstype").Property.JustifySelf | (import("csstype").Property.JustifySelf | undefined)[] | import("csstype").Property.JustifySelf[] | undefined;
1485
+ msLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
1486
+ msOrder?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
1487
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | (import("csstype").Property.MsOverflowStyle | undefined)[] | import("csstype").Property.MsOverflowStyle[] | undefined;
1488
+ msOverflowX?: import("csstype").Property.OverflowX | (import("csstype").Property.OverflowX | undefined)[] | import("csstype").Property.OverflowX[] | undefined;
1489
+ msOverflowY?: import("csstype").Property.OverflowY | (import("csstype").Property.OverflowY | undefined)[] | import("csstype").Property.OverflowY[] | undefined;
1490
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | (import("csstype").Property.MsScrollChaining | undefined)[] | import("csstype").Property.MsScrollChaining[] | undefined;
1491
+ msScrollLimitXMax?: string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | (import("csstype").Property.MsScrollLimitXMax<string | number> | undefined)[] | undefined;
1492
+ msScrollLimitXMin?: string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | (import("csstype").Property.MsScrollLimitXMin<string | number> | undefined)[] | undefined;
1493
+ msScrollLimitYMax?: string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | (import("csstype").Property.MsScrollLimitYMax<string | number> | undefined)[] | undefined;
1494
+ msScrollLimitYMin?: string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | (import("csstype").Property.MsScrollLimitYMin<string | number> | undefined)[] | undefined;
1495
+ msScrollRails?: import("csstype").Property.MsScrollRails | (import("csstype").Property.MsScrollRails | undefined)[] | import("csstype").Property.MsScrollRails[] | undefined;
1496
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | (import("csstype").Property.MsScrollSnapPointsX | undefined)[] | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
1497
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | (import("csstype").Property.MsScrollSnapPointsY | undefined)[] | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
1498
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | (import("csstype").Property.MsScrollSnapType | undefined)[] | import("csstype").Property.MsScrollSnapType[] | undefined;
1499
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | (import("csstype").Property.MsScrollTranslation | undefined)[] | import("csstype").Property.MsScrollTranslation[] | undefined;
1500
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | (import("csstype").Property.MsScrollbar3dlightColor | undefined)[] | import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
1501
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | (import("csstype").Property.MsScrollbarArrowColor | undefined)[] | import("csstype").Property.MsScrollbarArrowColor[] | undefined;
1502
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | (import("csstype").Property.MsScrollbarBaseColor | undefined)[] | import("csstype").Property.MsScrollbarBaseColor[] | undefined;
1503
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | (import("csstype").Property.MsScrollbarDarkshadowColor | undefined)[] | import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
1504
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | (import("csstype").Property.MsScrollbarFaceColor | undefined)[] | import("csstype").Property.MsScrollbarFaceColor[] | undefined;
1505
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | (import("csstype").Property.MsScrollbarHighlightColor | undefined)[] | import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
1506
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | (import("csstype").Property.MsScrollbarShadowColor | undefined)[] | import("csstype").Property.MsScrollbarShadowColor[] | undefined;
1507
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | (import("csstype").Property.MsTextAutospace | undefined)[] | import("csstype").Property.MsTextAutospace[] | undefined;
1508
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
1509
+ msTextOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
1510
+ msTouchAction?: import("csstype").Property.TouchAction | (import("csstype").Property.TouchAction | undefined)[] | import("csstype").Property.TouchAction[] | undefined;
1511
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | (import("csstype").Property.MsTouchSelect | undefined)[] | import("csstype").Property.MsTouchSelect[] | undefined;
1512
+ msTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
1513
+ msTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
1514
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
1515
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
1516
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
1517
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
1518
+ msUserSelect?: import("csstype").Property.MsUserSelect | (import("csstype").Property.MsUserSelect | undefined)[] | import("csstype").Property.MsUserSelect[] | undefined;
1519
+ msWordBreak?: import("csstype").Property.WordBreak | (import("csstype").Property.WordBreak | undefined)[] | import("csstype").Property.WordBreak[] | undefined;
1520
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | (import("csstype").Property.MsWrapFlow | undefined)[] | import("csstype").Property.MsWrapFlow[] | undefined;
1521
+ msWrapMargin?: string[] | import("csstype").Property.MsWrapMargin<string | number> | (import("csstype").Property.MsWrapMargin<string | number> | undefined)[] | undefined;
1522
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | (import("csstype").Property.MsWrapThrough | undefined)[] | import("csstype").Property.MsWrapThrough[] | undefined;
1523
+ msWritingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
1524
+ WebkitAlignContent?: import("csstype").Property.AlignContent | (import("csstype").Property.AlignContent | undefined)[] | import("csstype").Property.AlignContent[] | undefined;
1525
+ WebkitAlignItems?: import("csstype").Property.AlignItems | (import("csstype").Property.AlignItems | undefined)[] | import("csstype").Property.AlignItems[] | undefined;
1526
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | (import("csstype").Property.AlignSelf | undefined)[] | import("csstype").Property.AlignSelf[] | undefined;
1527
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
1528
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
1529
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
1530
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
1531
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
1532
+ WebkitAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
1533
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
1534
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
1535
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | (import("csstype").Property.WebkitAppearance | undefined)[] | import("csstype").Property.WebkitAppearance[] | undefined;
1536
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | (import("csstype").Property.BackdropFilter | undefined)[] | import("csstype").Property.BackdropFilter[] | undefined;
1537
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | (import("csstype").Property.BackfaceVisibility | undefined)[] | import("csstype").Property.BackfaceVisibility[] | undefined;
1538
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
1539
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
1540
+ WebkitBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
1541
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | (import("csstype").Property.WebkitBorderBeforeColor | undefined)[] | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
1542
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | (import("csstype").Property.WebkitBorderBeforeStyle | undefined)[] | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
1543
+ WebkitBorderBeforeWidth?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | (import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined)[] | undefined;
1544
+ WebkitBorderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
1545
+ WebkitBorderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
1546
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | (import("csstype").Property.BorderImageSlice | undefined)[] | ((string & {}) | import("csstype").Globals)[] | undefined;
1547
+ WebkitBorderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
1548
+ WebkitBorderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
1549
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
1550
+ WebkitBoxReflect?: (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | (import("csstype").Property.WebkitBoxReflect<string | number> | undefined)[] | undefined;
1551
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
1552
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | (import("csstype").Property.BoxSizing | undefined)[] | import("csstype").Property.BoxSizing[] | undefined;
1553
+ WebkitClipPath?: import("csstype").Property.ClipPath | (import("csstype").Property.ClipPath | undefined)[] | import("csstype").Property.ClipPath[] | undefined;
1554
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | (import("csstype").Property.ColumnCount | undefined)[] | ("auto" | import("csstype").Globals)[] | undefined;
1555
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | (import("csstype").Property.ColumnFill | undefined)[] | import("csstype").Property.ColumnFill[] | undefined;
1556
+ WebkitColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | (import("csstype").Property.ColumnGap<string | number> | undefined)[] | undefined;
1557
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | (import("csstype").Property.ColumnRuleColor | undefined)[] | import("csstype").Property.ColumnRuleColor[] | undefined;
1558
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | (import("csstype").Property.ColumnRuleStyle | undefined)[] | import("csstype").Property.ColumnRuleStyle[] | undefined;
1559
+ WebkitColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | (import("csstype").Property.ColumnRuleWidth<string | number> | undefined)[] | undefined;
1560
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | (import("csstype").Property.ColumnSpan | undefined)[] | import("csstype").Property.ColumnSpan[] | undefined;
1561
+ WebkitColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | (import("csstype").Property.ColumnWidth<string | number> | undefined)[] | undefined;
1562
+ WebkitFilter?: import("csstype").Property.Filter | (import("csstype").Property.Filter | undefined)[] | import("csstype").Property.Filter[] | undefined;
1563
+ WebkitFlexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | (import("csstype").Property.FlexBasis<string | number> | undefined)[] | undefined;
1564
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | (import("csstype").Property.FlexDirection | undefined)[] | import("csstype").Property.FlexDirection[] | undefined;
1565
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | (import("csstype").Property.FlexGrow | undefined)[] | import("csstype").Globals[] | undefined;
1566
+ WebkitFlexShrink?: import("csstype").Globals[] | import("csstype").Property.FlexShrink | (import("csstype").Property.FlexShrink | undefined)[] | undefined;
1567
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | (import("csstype").Property.FlexWrap | undefined)[] | import("csstype").Property.FlexWrap[] | undefined;
1568
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | (import("csstype").Property.FontFeatureSettings | undefined)[] | import("csstype").Property.FontFeatureSettings[] | undefined;
1569
+ WebkitFontKerning?: import("csstype").Property.FontKerning | (import("csstype").Property.FontKerning | undefined)[] | import("csstype").Property.FontKerning[] | undefined;
1570
+ WebkitFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | (import("csstype").Property.FontSmooth<string | number> | undefined)[] | undefined;
1571
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | (import("csstype").Property.FontVariantLigatures | undefined)[] | import("csstype").Property.FontVariantLigatures[] | undefined;
1572
+ WebkitHyphens?: import("csstype").Property.Hyphens | (import("csstype").Property.Hyphens | undefined)[] | import("csstype").Property.Hyphens[] | undefined;
1573
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | (import("csstype").Property.JustifyContent | undefined)[] | import("csstype").Property.JustifyContent[] | undefined;
1574
+ WebkitLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
1575
+ WebkitLineClamp?: ("none" | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | (import("csstype").Property.WebkitLineClamp | undefined)[] | undefined;
1576
+ WebkitMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | (import("csstype").Property.MarginInlineEnd<string | number> | undefined)[] | undefined;
1577
+ WebkitMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | (import("csstype").Property.MarginInlineStart<string | number> | undefined)[] | undefined;
1578
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | (import("csstype").Property.WebkitMaskAttachment | undefined)[] | import("csstype").Property.WebkitMaskAttachment[] | undefined;
1579
+ WebkitMaskBoxImageOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | (import("csstype").Property.MaskBorderOutset<string | number> | undefined)[] | undefined;
1580
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | (import("csstype").Property.MaskBorderRepeat | undefined)[] | import("csstype").Property.MaskBorderRepeat[] | undefined;
1581
+ WebkitMaskBoxImageSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | (import("csstype").Property.MaskBorderSlice | undefined)[] | undefined;
1582
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | (import("csstype").Property.MaskBorderSource | undefined)[] | import("csstype").Property.MaskBorderSource[] | undefined;
1583
+ WebkitMaskBoxImageWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | (import("csstype").Property.MaskBorderWidth<string | number> | undefined)[] | undefined;
1584
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | (import("csstype").Property.WebkitMaskClip | undefined)[] | import("csstype").Property.WebkitMaskClip[] | undefined;
1585
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | (import("csstype").Property.WebkitMaskComposite | undefined)[] | import("csstype").Property.WebkitMaskComposite[] | undefined;
1586
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | (import("csstype").Property.WebkitMaskImage | undefined)[] | import("csstype").Property.WebkitMaskImage[] | undefined;
1587
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | (import("csstype").Property.WebkitMaskOrigin | undefined)[] | import("csstype").Property.WebkitMaskOrigin[] | undefined;
1588
+ WebkitMaskPosition?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | (import("csstype").Property.WebkitMaskPosition<string | number> | undefined)[] | undefined;
1589
+ WebkitMaskPositionX?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | (import("csstype").Property.WebkitMaskPositionX<string | number> | undefined)[] | undefined;
1590
+ WebkitMaskPositionY?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | (import("csstype").Property.WebkitMaskPositionY<string | number> | undefined)[] | undefined;
1591
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | (import("csstype").Property.WebkitMaskRepeat | undefined)[] | import("csstype").Property.WebkitMaskRepeat[] | undefined;
1592
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | (import("csstype").Property.WebkitMaskRepeatX | undefined)[] | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
1593
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | (import("csstype").Property.WebkitMaskRepeatY | undefined)[] | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
1594
+ WebkitMaskSize?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | (import("csstype").Property.WebkitMaskSize<string | number> | undefined)[] | undefined;
1595
+ WebkitMaxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | (import("csstype").Property.MaxInlineSize<string | number> | undefined)[] | undefined;
1596
+ WebkitOrder?: import("csstype").Globals[] | import("csstype").Property.Order | (import("csstype").Property.Order | undefined)[] | undefined;
1597
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | (import("csstype").Property.WebkitOverflowScrolling | undefined)[] | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
1598
+ WebkitPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | (import("csstype").Property.PaddingInlineEnd<string | number> | undefined)[] | undefined;
1599
+ WebkitPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | (import("csstype").Property.PaddingInlineStart<string | number> | undefined)[] | undefined;
1600
+ WebkitPerspective?: string[] | import("csstype").Property.Perspective<string | number> | (import("csstype").Property.Perspective<string | number> | undefined)[] | undefined;
1601
+ WebkitPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | (import("csstype").Property.PerspectiveOrigin<string | number> | undefined)[] | undefined;
1602
+ WebkitPrintColorAdjust?: import("csstype").Property.ColorAdjust | (import("csstype").Property.ColorAdjust | undefined)[] | import("csstype").Property.ColorAdjust[] | undefined;
1603
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | (import("csstype").Property.RubyPosition | undefined)[] | import("csstype").Property.RubyPosition[] | undefined;
1604
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | (import("csstype").Property.ScrollSnapType | undefined)[] | import("csstype").Property.ScrollSnapType[] | undefined;
1605
+ WebkitShapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | (import("csstype").Property.ShapeMargin<string | number> | undefined)[] | undefined;
1606
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | (import("csstype").Property.WebkitTapHighlightColor | undefined)[] | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
1607
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | (import("csstype").Property.TextCombineUpright | undefined)[] | import("csstype").Property.TextCombineUpright[] | undefined;
1608
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
1609
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
1610
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | (import("csstype").Property.TextDecorationSkip | undefined)[] | import("csstype").Property.TextDecorationSkip[] | undefined;
1611
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
1612
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | (import("csstype").Property.TextEmphasisColor | undefined)[] | import("csstype").Property.TextEmphasisColor[] | undefined;
1613
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | (import("csstype").Property.TextEmphasisPosition | undefined)[] | import("csstype").Property.TextEmphasisPosition[] | undefined;
1614
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | (import("csstype").Property.TextEmphasisStyle | undefined)[] | import("csstype").Property.TextEmphasisStyle[] | undefined;
1615
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | (import("csstype").Property.WebkitTextFillColor | undefined)[] | import("csstype").Property.WebkitTextFillColor[] | undefined;
1616
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | (import("csstype").Property.TextOrientation | undefined)[] | import("csstype").Property.TextOrientation[] | undefined;
1617
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | (import("csstype").Property.TextSizeAdjust | undefined)[] | import("csstype").Property.TextSizeAdjust[] | undefined;
1618
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | (import("csstype").Property.WebkitTextStrokeColor | undefined)[] | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
1619
+ WebkitTextStrokeWidth?: string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | (import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined)[] | undefined;
1620
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | (import("csstype").Property.TextUnderlinePosition | undefined)[] | import("csstype").Property.TextUnderlinePosition[] | undefined;
1621
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | (import("csstype").Property.WebkitTouchCallout | undefined)[] | import("csstype").Property.WebkitTouchCallout[] | undefined;
1622
+ WebkitTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
1623
+ WebkitTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
1624
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | (import("csstype").Property.TransformStyle | undefined)[] | import("csstype").Property.TransformStyle[] | undefined;
1625
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
1626
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
1627
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
1628
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
1629
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | (import("csstype").Property.WebkitUserModify | undefined)[] | import("csstype").Property.WebkitUserModify[] | undefined;
1630
+ WebkitUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
1631
+ WebkitWritingMode?: import("csstype").Property.WritingMode | (import("csstype").Property.WritingMode | undefined)[] | import("csstype").Property.WritingMode[] | undefined;
1632
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
1633
+ MozBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
1634
+ MozColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
1635
+ MozColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
1636
+ MozTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
1637
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | (import("csstype").Property.MsContentZoomLimit | undefined)[] | import("csstype").Property.MsContentZoomLimit[] | undefined;
1638
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | (import("csstype").Property.MsContentZoomSnap | undefined)[] | import("csstype").Property.MsContentZoomSnap[] | undefined;
1639
+ msFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
1640
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | (import("csstype").Property.MsScrollLimit | undefined)[] | import("csstype").Property.MsScrollLimit[] | undefined;
1641
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | (import("csstype").Property.MsScrollSnapX | undefined)[] | import("csstype").Property.MsScrollSnapX[] | undefined;
1642
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | (import("csstype").Property.MsScrollSnapY | undefined)[] | import("csstype").Property.MsScrollSnapY[] | undefined;
1643
+ msTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
1644
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
1645
+ WebkitBorderBefore?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | (import("csstype").Property.WebkitBorderBefore<string | number> | undefined)[] | undefined;
1646
+ WebkitBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
1647
+ WebkitBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
1648
+ WebkitColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | (import("csstype").Property.ColumnRule<string | number> | undefined)[] | undefined;
1649
+ WebkitColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | (import("csstype").Property.Columns<string | number> | undefined)[] | undefined;
1650
+ WebkitFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | (import("csstype").Property.Flex<string | number> | undefined)[] | undefined;
1651
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | (import("csstype").Property.FlexFlow | undefined)[] | import("csstype").Property.FlexFlow[] | undefined;
1652
+ WebkitMask?: (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | (import("csstype").Property.WebkitMask<string | number> | undefined)[] | undefined;
1653
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | (import("csstype").Property.MaskBorder | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
1654
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | (import("csstype").Property.TextEmphasis | undefined)[] | import("csstype").Property.TextEmphasis[] | undefined;
1655
+ WebkitTextStroke?: (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | (import("csstype").Property.WebkitTextStroke<string | number> | undefined)[] | undefined;
1656
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
1657
+ azimuth?: import("csstype").Property.Azimuth | (import("csstype").Property.Azimuth | undefined)[] | import("csstype").Property.Azimuth[] | undefined;
1658
+ boxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
1659
+ boxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
1660
+ boxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
1661
+ boxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
1662
+ boxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
1663
+ boxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
1664
+ boxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
1665
+ boxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
1666
+ clip?: import("csstype").Property.Clip | (import("csstype").Property.Clip | undefined)[] | import("csstype").Property.Clip[] | undefined;
1667
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | (import("csstype").Property.FontVariantAlternates | undefined)[] | import("csstype").Property.FontVariantAlternates[] | undefined;
1668
+ gridColumnGap?: (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | (import("csstype").Property.GridColumnGap<string | number> | undefined)[] | undefined;
1669
+ gridGap?: (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | (import("csstype").Property.GridGap<string | number> | undefined)[] | undefined;
1670
+ gridRowGap?: (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | (import("csstype").Property.GridRowGap<string | number> | undefined)[] | undefined;
1671
+ imeMode?: import("csstype").Property.ImeMode | (import("csstype").Property.ImeMode | undefined)[] | import("csstype").Property.ImeMode[] | undefined;
1672
+ offsetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | (import("csstype").Property.InsetBlock<string | number> | undefined)[] | undefined;
1673
+ offsetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | (import("csstype").Property.InsetBlockEnd<string | number> | undefined)[] | undefined;
1674
+ offsetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | (import("csstype").Property.InsetBlockStart<string | number> | undefined)[] | undefined;
1675
+ offsetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | (import("csstype").Property.InsetInline<string | number> | undefined)[] | undefined;
1676
+ offsetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | (import("csstype").Property.InsetInlineEnd<string | number> | undefined)[] | undefined;
1677
+ offsetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | (import("csstype").Property.InsetInlineStart<string | number> | undefined)[] | undefined;
1678
+ scrollSnapCoordinate?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | (import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined)[] | undefined;
1679
+ scrollSnapDestination?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | (import("csstype").Property.ScrollSnapDestination<string | number> | undefined)[] | undefined;
1680
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | (import("csstype").Property.ScrollSnapPointsX | undefined)[] | import("csstype").Property.ScrollSnapPointsX[] | undefined;
1681
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | (import("csstype").Property.ScrollSnapPointsY | undefined)[] | import("csstype").Property.ScrollSnapPointsY[] | undefined;
1682
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | (import("csstype").Property.ScrollSnapTypeX | undefined)[] | import("csstype").Property.ScrollSnapTypeX[] | undefined;
1683
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | (import("csstype").Property.ScrollSnapTypeY | undefined)[] | import("csstype").Property.ScrollSnapTypeY[] | undefined;
1684
+ scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | (import("csstype").Property.MsScrollbarTrackColor | undefined)[] | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
1685
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
1686
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
1687
+ KhtmlBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
1688
+ KhtmlBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
1689
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
1690
+ KhtmlBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
1691
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
1692
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
1693
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | (import("csstype").Property.LineBreak | undefined)[] | import("csstype").Property.LineBreak[] | undefined;
1694
+ KhtmlOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
1695
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | (import("csstype").Property.UserSelect | undefined)[] | import("csstype").Property.UserSelect[] | undefined;
1696
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | (import("csstype").Property.BackgroundClip | undefined)[] | import("csstype").Property.BackgroundClip[] | undefined;
1697
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | (import("csstype").Property.BoxDecorationBreak | undefined)[] | import("csstype").Property.BoxDecorationBreak[] | undefined;
1698
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | (import("csstype").Property.BackgroundOrigin | undefined)[] | import("csstype").Property.BackgroundOrigin[] | undefined;
1699
+ MozBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
1700
+ MozBinding?: import("csstype").Property.MozBinding | (import("csstype").Property.MozBinding | undefined)[] | import("csstype").Property.MozBinding[] | undefined;
1701
+ MozBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | (import("csstype").Property.BorderRadius<string | number> | undefined)[] | undefined;
1702
+ MozBorderRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | (import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined)[] | undefined;
1703
+ MozBorderRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | (import("csstype").Property.BorderBottomRightRadius<string | number> | undefined)[] | undefined;
1704
+ MozBorderRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | (import("csstype").Property.BorderTopLeftRadius<string | number> | undefined)[] | undefined;
1705
+ MozBorderRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | (import("csstype").Property.BorderTopRightRadius<string | number> | undefined)[] | undefined;
1706
+ MozBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
1707
+ MozBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
1708
+ MozBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
1709
+ MozBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
1710
+ MozBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
1711
+ MozBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
1712
+ MozBoxShadow?: import("csstype").Property.BoxShadow | (import("csstype").Property.BoxShadow | undefined)[] | import("csstype").Property.BoxShadow[] | undefined;
1713
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | (import("csstype").Property.MozFloatEdge | undefined)[] | import("csstype").Property.MozFloatEdge[] | undefined;
1714
+ MozForceBrokenImageIcon?: import("csstype").Globals[] | import("csstype").Property.MozForceBrokenImageIcon | (import("csstype").Property.MozForceBrokenImageIcon | undefined)[] | undefined;
1715
+ MozOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | (import("csstype").Property.Opacity | undefined)[] | undefined;
1716
+ MozOutline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | (import("csstype").Property.Outline<string | number> | undefined)[] | undefined;
1717
+ MozOutlineColor?: import("csstype").Property.OutlineColor | (import("csstype").Property.OutlineColor | undefined)[] | import("csstype").Property.OutlineColor[] | undefined;
1718
+ MozOutlineRadius?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | (import("csstype").Property.MozOutlineRadius<string | number> | undefined)[] | undefined;
1719
+ MozOutlineRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | (import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined)[] | undefined;
1720
+ MozOutlineRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | (import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined)[] | undefined;
1721
+ MozOutlineRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | (import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined)[] | undefined;
1722
+ MozOutlineRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | (import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined)[] | undefined;
1723
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | (import("csstype").Property.OutlineStyle | undefined)[] | import("csstype").Property.OutlineStyle[] | undefined;
1724
+ MozOutlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | (import("csstype").Property.OutlineWidth<string | number> | undefined)[] | undefined;
1725
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | (import("csstype").Property.TextAlignLast | undefined)[] | import("csstype").Property.TextAlignLast[] | undefined;
1726
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | (import("csstype").Property.TextDecorationColor | undefined)[] | import("csstype").Property.TextDecorationColor[] | undefined;
1727
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | (import("csstype").Property.TextDecorationLine | undefined)[] | import("csstype").Property.TextDecorationLine[] | undefined;
1728
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | (import("csstype").Property.TextDecorationStyle | undefined)[] | import("csstype").Property.TextDecorationStyle[] | undefined;
1729
+ MozUserInput?: import("csstype").Property.MozUserInput | (import("csstype").Property.MozUserInput | undefined)[] | import("csstype").Property.MozUserInput[] | undefined;
1730
+ msImeMode?: import("csstype").Property.ImeMode | (import("csstype").Property.ImeMode | undefined)[] | import("csstype").Property.ImeMode[] | undefined;
1731
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | (import("csstype").Property.MsScrollbarTrackColor | undefined)[] | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
1732
+ OAnimation?: import("csstype").Property.Animation<string & {}> | (import("csstype").Property.Animation<string & {}> | undefined)[] | (import("csstype").Globals | ("reverse" | "normal" | "alternate" | "alternate-reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
1733
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | (import("csstype").Property.AnimationDelay<string & {}> | undefined)[] | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
1734
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | (import("csstype").Property.AnimationDirection | undefined)[] | import("csstype").Property.AnimationDirection[] | undefined;
1735
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | (import("csstype").Property.AnimationDuration<string & {}> | undefined)[] | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
1736
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | (import("csstype").Property.AnimationFillMode | undefined)[] | import("csstype").Property.AnimationFillMode[] | undefined;
1737
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | (import("csstype").Property.AnimationIterationCount | undefined)[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
1738
+ OAnimationName?: import("csstype").Property.AnimationName | (import("csstype").Property.AnimationName | undefined)[] | import("csstype").Property.AnimationName[] | undefined;
1739
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | (import("csstype").Property.AnimationPlayState | undefined)[] | import("csstype").Property.AnimationPlayState[] | undefined;
1740
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | (import("csstype").Property.AnimationTimingFunction | undefined)[] | import("csstype").Property.AnimationTimingFunction[] | undefined;
1741
+ OBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | (import("csstype").Property.BackgroundSize<string | number> | undefined)[] | undefined;
1742
+ OBorderImage?: import("csstype").Property.BorderImage | (import("csstype").Property.BorderImage | undefined)[] | ("none" | (string & {}) | "repeat" | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
1743
+ OObjectFit?: import("csstype").Property.ObjectFit | (import("csstype").Property.ObjectFit | undefined)[] | import("csstype").Property.ObjectFit[] | undefined;
1744
+ OObjectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | (import("csstype").Property.ObjectPosition<string | number> | undefined)[] | undefined;
1745
+ OTabSize?: string[] | import("csstype").Property.TabSize<string | number> | (import("csstype").Property.TabSize<string | number> | undefined)[] | undefined;
1746
+ OTextOverflow?: import("csstype").Property.TextOverflow | (import("csstype").Property.TextOverflow | undefined)[] | import("csstype").Property.TextOverflow[] | undefined;
1747
+ OTransform?: import("csstype").Property.Transform | (import("csstype").Property.Transform | undefined)[] | import("csstype").Property.Transform[] | undefined;
1748
+ OTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | (import("csstype").Property.TransformOrigin<string | number> | undefined)[] | undefined;
1749
+ OTransition?: import("csstype").Property.Transition<string & {}> | (import("csstype").Property.Transition<string & {}> | undefined)[] | import("csstype").Property.Transition<string & {}>[] | undefined;
1750
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | (import("csstype").Property.TransitionDelay<string & {}> | undefined)[] | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
1751
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | (import("csstype").Property.TransitionDuration<string & {}> | undefined)[] | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
1752
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | (import("csstype").Property.TransitionProperty | undefined)[] | import("csstype").Property.TransitionProperty[] | undefined;
1753
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | (import("csstype").Property.TransitionTimingFunction | undefined)[] | import("csstype").Property.TransitionTimingFunction[] | undefined;
1754
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | (import("csstype").Property.BoxAlign | undefined)[] | import("csstype").Property.BoxAlign[] | undefined;
1755
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | (import("csstype").Property.BoxDirection | undefined)[] | import("csstype").Property.BoxDirection[] | undefined;
1756
+ WebkitBoxFlex?: import("csstype").Globals[] | import("csstype").Property.BoxFlex | (import("csstype").Property.BoxFlex | undefined)[] | undefined;
1757
+ WebkitBoxFlexGroup?: import("csstype").Globals[] | import("csstype").Property.BoxFlexGroup | (import("csstype").Property.BoxFlexGroup | undefined)[] | undefined;
1758
+ WebkitBoxLines?: import("csstype").Property.BoxLines | (import("csstype").Property.BoxLines | undefined)[] | import("csstype").Property.BoxLines[] | undefined;
1759
+ WebkitBoxOrdinalGroup?: import("csstype").Globals[] | import("csstype").Property.BoxOrdinalGroup | (import("csstype").Property.BoxOrdinalGroup | undefined)[] | undefined;
1760
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | (import("csstype").Property.BoxOrient | undefined)[] | import("csstype").Property.BoxOrient[] | undefined;
1761
+ WebkitBoxPack?: import("csstype").Property.BoxPack | (import("csstype").Property.BoxPack | undefined)[] | import("csstype").Property.BoxPack[] | undefined;
1762
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | (import("csstype").Property.ScrollSnapPointsX | undefined)[] | import("csstype").Property.ScrollSnapPointsX[] | undefined;
1763
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | (import("csstype").Property.ScrollSnapPointsY | undefined)[] | import("csstype").Property.ScrollSnapPointsY[] | undefined;
1764
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | (import("csstype").Property.AlignmentBaseline | undefined)[] | import("csstype").Property.AlignmentBaseline[] | undefined;
1765
+ baselineShift?: (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | (import("csstype").Property.BaselineShift<string | number> | undefined)[] | undefined;
1766
+ clipRule?: import("csstype").Property.ClipRule | (import("csstype").Property.ClipRule | undefined)[] | import("csstype").Property.ClipRule[] | undefined;
1767
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | (import("csstype").Property.ColorInterpolation | undefined)[] | import("csstype").Property.ColorInterpolation[] | undefined;
1768
+ colorRendering?: import("csstype").Property.ColorRendering | (import("csstype").Property.ColorRendering | undefined)[] | import("csstype").Property.ColorRendering[] | undefined;
1769
+ dominantBaseline?: import("csstype").Property.DominantBaseline | (import("csstype").Property.DominantBaseline | undefined)[] | import("csstype").Property.DominantBaseline[] | undefined;
1770
+ fill?: import("csstype").Property.Fill | (import("csstype").Property.Fill | undefined)[] | import("csstype").Property.Fill[] | undefined;
1771
+ fillOpacity?: import("csstype").Globals[] | import("csstype").Property.FillOpacity | (import("csstype").Property.FillOpacity | undefined)[] | undefined;
1772
+ fillRule?: import("csstype").Property.FillRule | (import("csstype").Property.FillRule | undefined)[] | import("csstype").Property.FillRule[] | undefined;
1773
+ floodColor?: import("csstype").Property.FloodColor | (import("csstype").Property.FloodColor | undefined)[] | import("csstype").Property.FloodColor[] | undefined;
1774
+ floodOpacity?: import("csstype").Globals[] | import("csstype").Property.FloodOpacity | (import("csstype").Property.FloodOpacity | undefined)[] | undefined;
1775
+ glyphOrientationVertical?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | (import("csstype").Property.GlyphOrientationVertical | undefined)[] | undefined;
1776
+ lightingColor?: import("csstype").Property.LightingColor | (import("csstype").Property.LightingColor | undefined)[] | import("csstype").Property.LightingColor[] | undefined;
1777
+ marker?: import("csstype").Property.Marker | (import("csstype").Property.Marker | undefined)[] | import("csstype").Property.Marker[] | undefined;
1778
+ markerEnd?: import("csstype").Property.MarkerEnd | (import("csstype").Property.MarkerEnd | undefined)[] | import("csstype").Property.MarkerEnd[] | undefined;
1779
+ markerMid?: import("csstype").Property.MarkerMid | (import("csstype").Property.MarkerMid | undefined)[] | import("csstype").Property.MarkerMid[] | undefined;
1780
+ markerStart?: import("csstype").Property.MarkerStart | (import("csstype").Property.MarkerStart | undefined)[] | import("csstype").Property.MarkerStart[] | undefined;
1781
+ shapeRendering?: import("csstype").Property.ShapeRendering | (import("csstype").Property.ShapeRendering | undefined)[] | import("csstype").Property.ShapeRendering[] | undefined;
1782
+ stopColor?: import("csstype").Property.StopColor | (import("csstype").Property.StopColor | undefined)[] | import("csstype").Property.StopColor[] | undefined;
1783
+ stopOpacity?: import("csstype").Globals[] | import("csstype").Property.StopOpacity | (import("csstype").Property.StopOpacity | undefined)[] | undefined;
1784
+ stroke?: import("csstype").Property.Stroke | (import("csstype").Property.Stroke | undefined)[] | import("csstype").Property.Stroke[] | undefined;
1785
+ strokeDasharray?: (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | (import("csstype").Property.StrokeDasharray<string | number> | undefined)[] | undefined;
1786
+ strokeDashoffset?: (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | (import("csstype").Property.StrokeDashoffset<string | number> | undefined)[] | undefined;
1787
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | (import("csstype").Property.StrokeLinecap | undefined)[] | import("csstype").Property.StrokeLinecap[] | undefined;
1788
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | (import("csstype").Property.StrokeLinejoin | undefined)[] | import("csstype").Property.StrokeLinejoin[] | undefined;
1789
+ strokeMiterlimit?: import("csstype").Globals[] | import("csstype").Property.StrokeMiterlimit | (import("csstype").Property.StrokeMiterlimit | undefined)[] | undefined;
1790
+ strokeOpacity?: import("csstype").Globals[] | import("csstype").Property.StrokeOpacity | (import("csstype").Property.StrokeOpacity | undefined)[] | undefined;
1791
+ strokeWidth?: (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | (import("csstype").Property.StrokeWidth<string | number> | undefined)[] | undefined;
1792
+ textAnchor?: import("csstype").Property.TextAnchor | (import("csstype").Property.TextAnchor | undefined)[] | import("csstype").Property.TextAnchor[] | undefined;
1793
+ vectorEffect?: import("csstype").Property.VectorEffect | (import("csstype").Property.VectorEffect | undefined)[] | import("csstype").Property.VectorEffect[] | undefined;
1794
+ ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
1795
+ ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
1796
+ ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
1797
+ "::cue"?: import("@emotion/serialize").CSSObject | undefined;
1798
+ "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
1799
+ "::part"?: import("@emotion/serialize").CSSObject | undefined;
1800
+ "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
1801
+ ":dir"?: import("@emotion/serialize").CSSObject | undefined;
1802
+ ":has"?: import("@emotion/serialize").CSSObject | undefined;
1803
+ ":host"?: import("@emotion/serialize").CSSObject | undefined;
1804
+ ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
1805
+ ":is"?: import("@emotion/serialize").CSSObject | undefined;
1806
+ ":lang"?: import("@emotion/serialize").CSSObject | undefined;
1807
+ ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
1808
+ ":not"?: import("@emotion/serialize").CSSObject | undefined;
1809
+ ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
1810
+ ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
1811
+ ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
1812
+ ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
1813
+ ":where"?: import("@emotion/serialize").CSSObject | undefined;
1814
+ ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
1815
+ ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
1816
+ ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
1817
+ ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
1818
+ ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1819
+ ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
1820
+ ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
1821
+ ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
1822
+ ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
1823
+ ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
1824
+ ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1825
+ ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
1826
+ ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
1827
+ "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1828
+ "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
1829
+ "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
1830
+ "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
1831
+ "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
1832
+ "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
1833
+ "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
1834
+ "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
1835
+ "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
1836
+ "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
1837
+ "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
1838
+ "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
1839
+ "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
1840
+ "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1841
+ "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
1842
+ "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
1843
+ "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
1844
+ "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
1845
+ "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
1846
+ "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
1847
+ "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
1848
+ "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
1849
+ "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1850
+ "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
1851
+ "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
1852
+ "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
1853
+ "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
1854
+ "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
1855
+ "::after"?: import("@emotion/serialize").CSSObject | undefined;
1856
+ "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
1857
+ "::before"?: import("@emotion/serialize").CSSObject | undefined;
1858
+ "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
1859
+ "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
1860
+ "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
1861
+ "::marker"?: import("@emotion/serialize").CSSObject | undefined;
1862
+ "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
1863
+ "::selection"?: import("@emotion/serialize").CSSObject | undefined;
1864
+ "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
1865
+ "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
1866
+ ":active"?: import("@emotion/serialize").CSSObject | undefined;
1867
+ ":after"?: import("@emotion/serialize").CSSObject | undefined;
1868
+ ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
1869
+ ":before"?: import("@emotion/serialize").CSSObject | undefined;
1870
+ ":blank"?: import("@emotion/serialize").CSSObject | undefined;
1871
+ ":checked"?: import("@emotion/serialize").CSSObject | undefined;
1872
+ ":current"?: import("@emotion/serialize").CSSObject | undefined;
1873
+ ":default"?: import("@emotion/serialize").CSSObject | undefined;
1874
+ ":defined"?: import("@emotion/serialize").CSSObject | undefined;
1875
+ ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
1876
+ ":empty"?: import("@emotion/serialize").CSSObject | undefined;
1877
+ ":enabled"?: import("@emotion/serialize").CSSObject | undefined;
1878
+ ":first"?: import("@emotion/serialize").CSSObject | undefined;
1879
+ ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
1880
+ ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
1881
+ ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
1882
+ ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
1883
+ ":focus"?: import("@emotion/serialize").CSSObject | undefined;
1884
+ ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
1885
+ ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
1886
+ ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
1887
+ ":future"?: import("@emotion/serialize").CSSObject | undefined;
1888
+ ":hover"?: import("@emotion/serialize").CSSObject | undefined;
1889
+ ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
1890
+ ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
1891
+ ":invalid"?: import("@emotion/serialize").CSSObject | undefined;
1892
+ ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
1893
+ ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
1894
+ ":left"?: import("@emotion/serialize").CSSObject | undefined;
1895
+ ":link"?: import("@emotion/serialize").CSSObject | undefined;
1896
+ ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
1897
+ ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
1898
+ ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
1899
+ ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
1900
+ ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
1901
+ ":optional"?: import("@emotion/serialize").CSSObject | undefined;
1902
+ ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
1903
+ ":past"?: import("@emotion/serialize").CSSObject | undefined;
1904
+ ":paused"?: import("@emotion/serialize").CSSObject | undefined;
1905
+ ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
1906
+ ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
1907
+ ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
1908
+ ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
1909
+ ":required"?: import("@emotion/serialize").CSSObject | undefined;
1910
+ ":right"?: import("@emotion/serialize").CSSObject | undefined;
1911
+ ":root"?: import("@emotion/serialize").CSSObject | undefined;
1912
+ ":scope"?: import("@emotion/serialize").CSSObject | undefined;
1913
+ ":target"?: import("@emotion/serialize").CSSObject | undefined;
1914
+ ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
1915
+ ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
1916
+ ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
1917
+ ":valid"?: import("@emotion/serialize").CSSObject | undefined;
1918
+ ":visited"?: import("@emotion/serialize").CSSObject | undefined;
1919
+ };
1920
+ };
1921
+ false: {
1922
+ transition: "box-shadow 300ms ease-out, background 300ms ease-out";
1923
+ };
1924
+ };
1925
+ }, {}, {}, import("@workday/canvas-kit-styling").Stencil<{
1926
+ size: {
1927
+ large: {
1928
+ fontWeight: "--cnvs-sys-font-weight-bold";
1929
+ height: string;
1930
+ paddingInline: "--cnvs-sys-space-x8";
1931
+ minWidth: string;
1932
+ fontFamily: "--cnvs-sys-font-family-default";
1933
+ lineHeight: "--cnvs-sys-line-height-body-small";
1934
+ fontSize: "--cnvs-sys-font-size-body-small";
1935
+ letterSpacing: "--cnvs-base-letter-spacing-200";
1936
+ };
1937
+ medium: {
1938
+ fontWeight: "--cnvs-sys-font-weight-bold";
1939
+ minWidth: string;
1940
+ paddingInline: "--cnvs-sys-space-x6";
1941
+ height: "--cnvs-sys-space-x10";
1942
+ fontFamily: "--cnvs-sys-font-family-default";
1943
+ lineHeight: "--cnvs-sys-line-height-subtext-large";
1944
+ fontSize: "--cnvs-sys-font-size-subtext-large";
1945
+ letterSpacing: "--cnvs-base-letter-spacing-150";
1946
+ };
1947
+ small: {
1948
+ fontWeight: "--cnvs-sys-font-weight-bold";
1949
+ height: "--cnvs-sys-space-x8";
1950
+ minWidth: "--cnvs-sys-space-x20";
1951
+ paddingInline: "--cnvs-sys-space-x4";
1952
+ gap: "--cnvs-sys-space-x1";
1953
+ fontFamily: "--cnvs-sys-font-family-default";
1954
+ lineHeight: "--cnvs-sys-line-height-subtext-large";
1955
+ fontSize: "--cnvs-sys-font-size-subtext-large";
1956
+ letterSpacing: "--cnvs-base-letter-spacing-150";
1957
+ };
1958
+ extraSmall: {
1959
+ fontWeight: "--cnvs-sys-font-weight-bold";
1960
+ height: "--cnvs-sys-space-x6";
1961
+ minWidth: string;
1962
+ paddingInline: "--cnvs-sys-space-x3";
1963
+ gap: "--cnvs-sys-space-x1";
1964
+ fontFamily: "--cnvs-sys-font-family-default";
1965
+ lineHeight: "--cnvs-sys-line-height-subtext-medium";
1966
+ fontSize: "--cnvs-sys-font-size-subtext-medium";
1967
+ letterSpacing: "--cnvs-base-letter-spacing-100";
1968
+ };
1969
+ };
1970
+ grow: {
1971
+ true: {
1972
+ width: string;
1973
+ maxWidth: string;
1974
+ };
1975
+ };
1976
+ iconPosition: {
1977
+ only: {
1978
+ padding: "--cnvs-sys-space-zero";
1979
+ };
1980
+ start: {};
1981
+ end: {};
1982
+ };
1983
+ }, {}, {
1984
+ background: string;
1985
+ border: string;
1986
+ boxShadowInner: string;
1987
+ boxShadowOuter: string;
1988
+ label: string;
1989
+ opacity: string;
1990
+ borderRadius: string;
1991
+ }, never, never>, never>;
1992
+ export declare const AiAssistantIngressButton: import("@workday/canvas-kit-react/common").ElementComponent<"button", AiAssistantIngressButtonProps>;
1993
+ //# sourceMappingURL=AiAssistantIngressButton.d.ts.map