@neuctra/ui 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,26 +1,1121 @@
1
1
  import React from "react";
2
- /** 🎯 Limit to only HTML elements to avoid SVG union explosion */
3
2
  type HTMLElementTag = keyof HTMLElementTagNameMap;
4
3
  type TextProps<T extends HTMLElementTag = "p"> = {
5
4
  as?: T;
6
5
  children: React.ReactNode;
7
- color?: string;
6
+ /** Minimal styling */
8
7
  size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | string;
9
8
  weight?: React.CSSProperties["fontWeight"];
10
9
  align?: React.CSSProperties["textAlign"];
11
- transform?: React.CSSProperties["textTransform"];
12
- italic?: boolean;
13
- underline?: boolean;
14
- strikethrough?: boolean;
15
10
  truncate?: boolean;
16
- selectable?: boolean;
17
- hoverable?: boolean;
18
- darkMode?: boolean;
19
- baseColor?: string;
20
11
  className?: string;
21
12
  style?: React.CSSProperties;
22
- onClick?: () => void;
23
- } & Omit<React.HTMLAttributes<HTMLElementTagNameMap[HTMLElementTag]>, "color" | "style">;
24
- /** 💬 Main Component (HTML-only tags) */
25
- export declare function Text<T extends HTMLElementTag = "p">({ as, children, color, size, weight, align, transform, italic, underline, strikethrough, truncate, selectable, hoverable, onClick, darkMode, baseColor, className, style, ...rest }: TextProps<T>): React.DetailedReactHTMLElement<React.PropsWithoutRef<React.ComponentProps<T>>, HTMLElement>;
13
+ } & Omit<React.HTMLAttributes<HTMLElementTagNameMap[T]>, "style">;
14
+ export declare function Text<T extends HTMLElementTag = "p">({ as, children, size, weight, align, truncate, className, style, ...rest }: TextProps<T>): React.DetailedReactHTMLElement<{
15
+ id?: string | undefined | undefined;
16
+ title?: string | undefined | undefined;
17
+ suppressHydrationWarning?: boolean | undefined | undefined;
18
+ color?: string | undefined | undefined;
19
+ lang?: string | undefined | undefined;
20
+ role?: React.AriaRole | undefined;
21
+ tabIndex?: number | undefined | undefined;
22
+ "aria-activedescendant"?: string | undefined | undefined;
23
+ "aria-atomic"?: (boolean | "false" | "true") | undefined;
24
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
25
+ "aria-braillelabel"?: string | undefined | undefined;
26
+ "aria-brailleroledescription"?: string | undefined | undefined;
27
+ "aria-busy"?: (boolean | "false" | "true") | undefined;
28
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
29
+ "aria-colcount"?: number | undefined | undefined;
30
+ "aria-colindex"?: number | undefined | undefined;
31
+ "aria-colindextext"?: string | undefined | undefined;
32
+ "aria-colspan"?: number | undefined | undefined;
33
+ "aria-controls"?: string | undefined | undefined;
34
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
35
+ "aria-describedby"?: string | undefined | undefined;
36
+ "aria-description"?: string | undefined | undefined;
37
+ "aria-details"?: string | undefined | undefined;
38
+ "aria-disabled"?: (boolean | "false" | "true") | undefined;
39
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
40
+ "aria-errormessage"?: string | undefined | undefined;
41
+ "aria-expanded"?: (boolean | "false" | "true") | undefined;
42
+ "aria-flowto"?: string | undefined | undefined;
43
+ "aria-grabbed"?: (boolean | "false" | "true") | undefined;
44
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
45
+ "aria-hidden"?: (boolean | "false" | "true") | undefined;
46
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
47
+ "aria-keyshortcuts"?: string | undefined | undefined;
48
+ "aria-label"?: string | undefined | undefined;
49
+ "aria-labelledby"?: string | undefined | undefined;
50
+ "aria-level"?: number | undefined | undefined;
51
+ "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
52
+ "aria-modal"?: (boolean | "false" | "true") | undefined;
53
+ "aria-multiline"?: (boolean | "false" | "true") | undefined;
54
+ "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
55
+ "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
56
+ "aria-owns"?: string | undefined | undefined;
57
+ "aria-placeholder"?: string | undefined | undefined;
58
+ "aria-posinset"?: number | undefined | undefined;
59
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
60
+ "aria-readonly"?: (boolean | "false" | "true") | undefined;
61
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
62
+ "aria-required"?: (boolean | "false" | "true") | undefined;
63
+ "aria-roledescription"?: string | undefined | undefined;
64
+ "aria-rowcount"?: number | undefined | undefined;
65
+ "aria-rowindex"?: number | undefined | undefined;
66
+ "aria-rowindextext"?: string | undefined | undefined;
67
+ "aria-rowspan"?: number | undefined | undefined;
68
+ "aria-selected"?: (boolean | "false" | "true") | undefined;
69
+ "aria-setsize"?: number | undefined | undefined;
70
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
71
+ "aria-valuemax"?: number | undefined | undefined;
72
+ "aria-valuemin"?: number | undefined | undefined;
73
+ "aria-valuenow"?: number | undefined | undefined;
74
+ "aria-valuetext"?: string | undefined | undefined;
75
+ dangerouslySetInnerHTML?: {
76
+ __html: string | TrustedHTML;
77
+ } | undefined | undefined;
78
+ onCopy?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
79
+ onCopyCapture?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
80
+ onCut?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
81
+ onCutCapture?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
82
+ onPaste?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
83
+ onPasteCapture?: React.ClipboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
84
+ onCompositionEnd?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
85
+ onCompositionEndCapture?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
86
+ onCompositionStart?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
87
+ onCompositionStartCapture?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
88
+ onCompositionUpdate?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
89
+ onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLElementTagNameMap[T]> | undefined;
90
+ onFocus?: React.FocusEventHandler<HTMLElementTagNameMap[T]> | undefined;
91
+ onFocusCapture?: React.FocusEventHandler<HTMLElementTagNameMap[T]> | undefined;
92
+ onBlur?: React.FocusEventHandler<HTMLElementTagNameMap[T]> | undefined;
93
+ onBlurCapture?: React.FocusEventHandler<HTMLElementTagNameMap[T]> | undefined;
94
+ onChange?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
95
+ onChangeCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
96
+ onBeforeInput?: React.InputEventHandler<HTMLElementTagNameMap[T]> | undefined;
97
+ onBeforeInputCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
98
+ onInput?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
99
+ onInputCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
100
+ onReset?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
101
+ onResetCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
102
+ onSubmit?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
103
+ onSubmitCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
104
+ onInvalid?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
105
+ onInvalidCapture?: React.FormEventHandler<HTMLElementTagNameMap[T]> | undefined;
106
+ onLoad?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
107
+ onLoadCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
108
+ onError?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
109
+ onErrorCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
110
+ onKeyDown?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
111
+ onKeyDownCapture?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
112
+ onKeyPress?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
113
+ onKeyPressCapture?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
114
+ onKeyUp?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
115
+ onKeyUpCapture?: React.KeyboardEventHandler<HTMLElementTagNameMap[T]> | undefined;
116
+ onAbort?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
117
+ onAbortCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
118
+ onCanPlay?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
119
+ onCanPlayCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
120
+ onCanPlayThrough?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
121
+ onCanPlayThroughCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
122
+ onDurationChange?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
123
+ onDurationChangeCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
124
+ onEmptied?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
125
+ onEmptiedCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
126
+ onEncrypted?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
127
+ onEncryptedCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
128
+ onEnded?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
129
+ onEndedCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
130
+ onLoadedData?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
131
+ onLoadedDataCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
132
+ onLoadedMetadata?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
133
+ onLoadedMetadataCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
134
+ onLoadStart?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
135
+ onLoadStartCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
136
+ onPause?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
137
+ onPauseCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
138
+ onPlay?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
139
+ onPlayCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
140
+ onPlaying?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
141
+ onPlayingCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
142
+ onProgress?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
143
+ onProgressCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
144
+ onRateChange?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
145
+ onRateChangeCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
146
+ onSeeked?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
147
+ onSeekedCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
148
+ onSeeking?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
149
+ onSeekingCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
150
+ onStalled?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
151
+ onStalledCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
152
+ onSuspend?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
153
+ onSuspendCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
154
+ onTimeUpdate?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
155
+ onTimeUpdateCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
156
+ onVolumeChange?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
157
+ onVolumeChangeCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
158
+ onWaiting?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
159
+ onWaitingCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
160
+ onAuxClick?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
161
+ onAuxClickCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
162
+ onClick?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
163
+ onClickCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
164
+ onContextMenu?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
165
+ onContextMenuCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
166
+ onDoubleClick?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
167
+ onDoubleClickCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
168
+ onDrag?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
169
+ onDragCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
170
+ onDragEnd?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
171
+ onDragEndCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
172
+ onDragEnter?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
173
+ onDragEnterCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
174
+ onDragExit?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
175
+ onDragExitCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
176
+ onDragLeave?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
177
+ onDragLeaveCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
178
+ onDragOver?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
179
+ onDragOverCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
180
+ onDragStart?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
181
+ onDragStartCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
182
+ onDrop?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
183
+ onDropCapture?: React.DragEventHandler<HTMLElementTagNameMap[T]> | undefined;
184
+ onMouseDown?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
185
+ onMouseDownCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
186
+ onMouseEnter?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
187
+ onMouseLeave?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
188
+ onMouseMove?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
189
+ onMouseMoveCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
190
+ onMouseOut?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
191
+ onMouseOutCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
192
+ onMouseOver?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
193
+ onMouseOverCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
194
+ onMouseUp?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
195
+ onMouseUpCapture?: React.MouseEventHandler<HTMLElementTagNameMap[T]> | undefined;
196
+ onSelect?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
197
+ onSelectCapture?: React.ReactEventHandler<HTMLElementTagNameMap[T]> | undefined;
198
+ onTouchCancel?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
199
+ onTouchCancelCapture?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
200
+ onTouchEnd?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
201
+ onTouchEndCapture?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
202
+ onTouchMove?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
203
+ onTouchMoveCapture?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
204
+ onTouchStart?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
205
+ onTouchStartCapture?: React.TouchEventHandler<HTMLElementTagNameMap[T]> | undefined;
206
+ onPointerDown?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
207
+ onPointerDownCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
208
+ onPointerMove?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
209
+ onPointerMoveCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
210
+ onPointerUp?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
211
+ onPointerUpCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
212
+ onPointerCancel?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
213
+ onPointerCancelCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
214
+ onPointerEnter?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
215
+ onPointerLeave?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
216
+ onPointerOver?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
217
+ onPointerOverCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
218
+ onPointerOut?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
219
+ onPointerOutCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
220
+ onGotPointerCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
221
+ onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
222
+ onLostPointerCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
223
+ onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLElementTagNameMap[T]> | undefined;
224
+ onScroll?: React.UIEventHandler<HTMLElementTagNameMap[T]> | undefined;
225
+ onScrollCapture?: React.UIEventHandler<HTMLElementTagNameMap[T]> | undefined;
226
+ onScrollEnd?: React.UIEventHandler<HTMLElementTagNameMap[T]> | undefined;
227
+ onScrollEndCapture?: React.UIEventHandler<HTMLElementTagNameMap[T]> | undefined;
228
+ onWheel?: React.WheelEventHandler<HTMLElementTagNameMap[T]> | undefined;
229
+ onWheelCapture?: React.WheelEventHandler<HTMLElementTagNameMap[T]> | undefined;
230
+ onAnimationStart?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
231
+ onAnimationStartCapture?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
232
+ onAnimationEnd?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
233
+ onAnimationEndCapture?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
234
+ onAnimationIteration?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
235
+ onAnimationIterationCapture?: React.AnimationEventHandler<HTMLElementTagNameMap[T]> | undefined;
236
+ onToggle?: React.ToggleEventHandler<HTMLElementTagNameMap[T]> | undefined;
237
+ onBeforeToggle?: React.ToggleEventHandler<HTMLElementTagNameMap[T]> | undefined;
238
+ onTransitionCancel?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
239
+ onTransitionCancelCapture?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
240
+ onTransitionEnd?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
241
+ onTransitionEndCapture?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
242
+ onTransitionRun?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
243
+ onTransitionRunCapture?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
244
+ onTransitionStart?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
245
+ onTransitionStartCapture?: React.TransitionEventHandler<HTMLElementTagNameMap[T]> | undefined;
246
+ hidden?: boolean | undefined | undefined;
247
+ content?: string | undefined | undefined;
248
+ defaultChecked?: boolean | undefined | undefined;
249
+ defaultValue?: string | number | readonly string[] | undefined;
250
+ suppressContentEditableWarning?: boolean | undefined | undefined;
251
+ accessKey?: string | undefined | undefined;
252
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
253
+ autoFocus?: boolean | undefined | undefined;
254
+ contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
255
+ contextMenu?: string | undefined | undefined;
256
+ dir?: string | undefined | undefined;
257
+ draggable?: (boolean | "false" | "true") | undefined;
258
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
259
+ nonce?: string | undefined | undefined;
260
+ slot?: string | undefined | undefined;
261
+ spellCheck?: (boolean | "false" | "true") | undefined;
262
+ translate?: "yes" | "no" | undefined | undefined;
263
+ radioGroup?: string | undefined | undefined;
264
+ about?: string | undefined | undefined;
265
+ datatype?: string | undefined | undefined;
266
+ inlist?: any;
267
+ prefix?: string | undefined | undefined;
268
+ property?: string | undefined | undefined;
269
+ rel?: string | undefined | undefined;
270
+ resource?: string | undefined | undefined;
271
+ rev?: string | undefined | undefined;
272
+ typeof?: string | undefined | undefined;
273
+ vocab?: string | undefined | undefined;
274
+ autoCorrect?: string | undefined | undefined;
275
+ autoSave?: string | undefined | undefined;
276
+ itemProp?: string | undefined | undefined;
277
+ itemScope?: boolean | undefined | undefined;
278
+ itemType?: string | undefined | undefined;
279
+ itemID?: string | undefined | undefined;
280
+ itemRef?: string | undefined | undefined;
281
+ results?: number | undefined | undefined;
282
+ security?: string | undefined | undefined;
283
+ unselectable?: "on" | "off" | undefined | undefined;
284
+ popover?: "" | "auto" | "manual" | "hint" | undefined | undefined;
285
+ popoverTargetAction?: "toggle" | "show" | "hide" | undefined | undefined;
286
+ popoverTarget?: string | undefined | undefined;
287
+ inert?: boolean | undefined | undefined;
288
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
289
+ is?: string | undefined | undefined;
290
+ exportparts?: string | undefined | undefined;
291
+ part?: string | undefined | undefined;
292
+ className: string;
293
+ style: {
294
+ accentColor?: import("csstype").Property.AccentColor | undefined;
295
+ alignContent?: import("csstype").Property.AlignContent | undefined;
296
+ alignItems?: import("csstype").Property.AlignItems | undefined;
297
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
298
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
299
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
300
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
301
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
302
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
303
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
304
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
305
+ animationName?: import("csstype").Property.AnimationName | undefined;
306
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
307
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
308
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
309
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
310
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
311
+ appearance?: import("csstype").Property.Appearance | undefined;
312
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
313
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
314
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
315
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
316
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
317
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
318
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
319
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
320
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
321
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
322
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
323
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
324
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
325
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
326
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
327
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
328
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
329
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
330
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
331
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
332
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
333
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
334
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
335
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
336
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
337
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
338
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
339
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
340
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
341
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
342
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
343
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
344
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
345
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
346
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
347
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
348
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
349
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
350
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
351
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
352
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
353
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
354
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
355
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
356
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
357
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
358
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
359
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
360
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
361
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
362
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
363
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
364
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
365
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
366
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
367
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
368
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
369
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
370
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
371
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
372
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
373
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
374
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
375
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
376
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
377
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
378
+ breakInside?: import("csstype").Property.BreakInside | undefined;
379
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
380
+ caretColor?: import("csstype").Property.CaretColor | undefined;
381
+ caretShape?: import("csstype").Property.CaretShape | undefined;
382
+ clear?: import("csstype").Property.Clear | undefined;
383
+ clipPath?: import("csstype").Property.ClipPath | undefined;
384
+ color?: import("csstype").Property.Color | undefined;
385
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
386
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
387
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
388
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
389
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
390
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
391
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
392
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
393
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
394
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
395
+ contain?: import("csstype").Property.Contain | undefined;
396
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
397
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
398
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
399
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
400
+ containerName?: import("csstype").Property.ContainerName | undefined;
401
+ containerType?: import("csstype").Property.ContainerType | undefined;
402
+ content?: import("csstype").Property.Content | undefined;
403
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
404
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
405
+ counterReset?: import("csstype").Property.CounterReset | undefined;
406
+ counterSet?: import("csstype").Property.CounterSet | undefined;
407
+ cursor?: import("csstype").Property.Cursor | undefined;
408
+ direction?: import("csstype").Property.Direction | undefined;
409
+ display?: import("csstype").Property.Display | undefined;
410
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
411
+ filter?: import("csstype").Property.Filter | undefined;
412
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
413
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
414
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
415
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
416
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
417
+ float?: import("csstype").Property.Float | undefined;
418
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
419
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
420
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
421
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
422
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
423
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
424
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
425
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
426
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
427
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
428
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
429
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
430
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
431
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
432
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
433
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
434
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
435
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
436
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
437
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
438
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
439
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
440
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
441
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
442
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
443
+ fontWeight: import("csstype").Property.FontWeight;
444
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
445
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
446
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
447
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
448
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
449
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
450
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
451
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
452
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
453
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
454
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
455
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
456
+ height?: import("csstype").Property.Height<string | number> | undefined;
457
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
458
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
459
+ hyphens?: import("csstype").Property.Hyphens | undefined;
460
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
461
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
462
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
463
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
464
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
465
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
466
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
467
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
468
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
469
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
470
+ isolation?: import("csstype").Property.Isolation | undefined;
471
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
472
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
473
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
474
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
475
+ left?: import("csstype").Property.Left<string | number> | undefined;
476
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
477
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
478
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
479
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
480
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
481
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
482
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
483
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
484
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
485
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
486
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
487
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
488
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
489
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
490
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
491
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
492
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
493
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
494
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
495
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
496
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
497
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
498
+ maskClip?: import("csstype").Property.MaskClip | undefined;
499
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
500
+ maskImage?: import("csstype").Property.MaskImage | undefined;
501
+ maskMode?: import("csstype").Property.MaskMode | undefined;
502
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
503
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
504
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
505
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
506
+ maskType?: import("csstype").Property.MaskType | undefined;
507
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
508
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
509
+ mathShift?: import("csstype").Property.MathShift | undefined;
510
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
511
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
512
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
513
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
514
+ maxLines?: import("csstype").Property.MaxLines | undefined;
515
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
516
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
517
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
518
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
519
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
520
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
521
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
522
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
523
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
524
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
525
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
526
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
527
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
528
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
529
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
530
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
531
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
532
+ opacity?: import("csstype").Property.Opacity | undefined;
533
+ order?: import("csstype").Property.Order | undefined;
534
+ orphans?: import("csstype").Property.Orphans | undefined;
535
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
536
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
537
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
538
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
539
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
540
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
541
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
542
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
543
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
544
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
545
+ overflowX?: import("csstype").Property.OverflowX | undefined;
546
+ overflowY?: import("csstype").Property.OverflowY | undefined;
547
+ overlay?: import("csstype").Property.Overlay | undefined;
548
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
549
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
550
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
551
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
552
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
553
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
554
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
555
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
556
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
557
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
558
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
559
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
560
+ page?: import("csstype").Property.Page | undefined;
561
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
562
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
563
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
564
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
565
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
566
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
567
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
568
+ position?: import("csstype").Property.Position | undefined;
569
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
570
+ quotes?: import("csstype").Property.Quotes | undefined;
571
+ resize?: import("csstype").Property.Resize | undefined;
572
+ right?: import("csstype").Property.Right<string | number> | undefined;
573
+ rotate?: import("csstype").Property.Rotate | undefined;
574
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
575
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
576
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
577
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
578
+ scale?: import("csstype").Property.Scale | undefined;
579
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
580
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
581
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
582
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
583
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
584
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
585
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
586
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
587
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
588
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
589
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
590
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
591
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
592
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
593
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
594
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
595
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
596
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
597
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
598
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
599
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
600
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
601
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
602
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
603
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
604
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
605
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
606
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
607
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
608
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
609
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
610
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
611
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
612
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
613
+ textAlign: import("csstype").Property.TextAlign;
614
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
615
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
616
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
617
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
618
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
619
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
620
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
621
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
622
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
623
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
624
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
625
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
626
+ textJustify?: import("csstype").Property.TextJustify | undefined;
627
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
628
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
629
+ textRendering?: import("csstype").Property.TextRendering | undefined;
630
+ textShadow?: import("csstype").Property.TextShadow | undefined;
631
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
632
+ textTransform?: import("csstype").Property.TextTransform | undefined;
633
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
634
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
635
+ textWrap?: import("csstype").Property.TextWrap | undefined;
636
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
637
+ top?: import("csstype").Property.Top<string | number> | undefined;
638
+ touchAction?: import("csstype").Property.TouchAction | undefined;
639
+ transform?: import("csstype").Property.Transform | undefined;
640
+ transformBox?: import("csstype").Property.TransformBox | undefined;
641
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
642
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
643
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
644
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
645
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
646
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
647
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
648
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
649
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
650
+ userSelect?: import("csstype").Property.UserSelect | undefined;
651
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
652
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
653
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
654
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
655
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
656
+ visibility?: import("csstype").Property.Visibility | undefined;
657
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
658
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
659
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
660
+ widows?: import("csstype").Property.Widows | undefined;
661
+ width?: import("csstype").Property.Width<string | number> | undefined;
662
+ willChange?: import("csstype").Property.WillChange | undefined;
663
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
664
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
665
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
666
+ writingMode?: import("csstype").Property.WritingMode | undefined;
667
+ zIndex?: import("csstype").Property.ZIndex | undefined;
668
+ zoom?: import("csstype").Property.Zoom | undefined;
669
+ all?: import("csstype").Property.All | undefined;
670
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
671
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
672
+ background?: import("csstype").Property.Background<string | number> | undefined;
673
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
674
+ border?: import("csstype").Property.Border<string | number> | undefined;
675
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
676
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
677
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
678
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
679
+ borderColor?: import("csstype").Property.BorderColor | undefined;
680
+ borderImage?: import("csstype").Property.BorderImage | undefined;
681
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
682
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
683
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
684
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
685
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
686
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
687
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
688
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
689
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
690
+ caret?: import("csstype").Property.Caret | undefined;
691
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
692
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
693
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
694
+ container?: import("csstype").Property.Container | undefined;
695
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
696
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
697
+ font?: import("csstype").Property.Font | undefined;
698
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
699
+ grid?: import("csstype").Property.Grid | undefined;
700
+ gridArea?: import("csstype").Property.GridArea | undefined;
701
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
702
+ gridRow?: import("csstype").Property.GridRow | undefined;
703
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
704
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
705
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
706
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
707
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
708
+ listStyle?: import("csstype").Property.ListStyle | undefined;
709
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
710
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
711
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
712
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
713
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
714
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
715
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
716
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
717
+ overflow?: import("csstype").Property.Overflow | undefined;
718
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
719
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
720
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
721
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
722
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
723
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
724
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
725
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
726
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
727
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
728
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
729
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
730
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
731
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
732
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
733
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
734
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
735
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
736
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
737
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
738
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
739
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
740
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
741
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
742
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
743
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
744
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
745
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
746
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
747
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
748
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
749
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
750
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
751
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
752
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
753
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
754
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
755
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
756
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
757
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
758
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
759
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
760
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
761
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
762
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
763
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
764
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
765
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
766
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
767
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
768
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
769
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
770
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
771
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
772
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
773
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
774
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
775
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
776
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
777
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
778
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
779
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
780
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
781
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
782
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
783
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
784
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
785
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
786
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
787
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
788
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
789
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
790
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
791
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
792
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
793
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
794
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
795
+ msFilter?: import("csstype").Property.MsFilter | undefined;
796
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
797
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
798
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
799
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
800
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
801
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
802
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
803
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
804
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
805
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
806
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
807
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
808
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
809
+ msOrder?: import("csstype").Property.Order | undefined;
810
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
811
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
812
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
813
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
814
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
815
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
816
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
817
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
818
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
819
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
820
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
821
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
822
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
823
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
824
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
825
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
826
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
827
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
828
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
829
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
830
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
831
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
832
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
833
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
834
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
835
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
836
+ msTransform?: import("csstype").Property.Transform | undefined;
837
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
838
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
839
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
840
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
841
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
842
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
843
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
844
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
845
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
846
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
847
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
848
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
849
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
850
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
851
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
852
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
853
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
854
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
855
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
856
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
857
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
858
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
859
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
860
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
861
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
862
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
863
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
864
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
865
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
866
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
867
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
868
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
869
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
870
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
871
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
872
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
873
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
874
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
875
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
876
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
877
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
878
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
879
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
880
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
881
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
882
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
883
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
884
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
885
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
886
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
887
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
888
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
889
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
890
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
891
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
892
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
893
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
894
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
895
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
896
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
897
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
898
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
899
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
900
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
901
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
902
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
903
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
904
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
905
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
906
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
907
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
908
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
909
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
910
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
911
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
912
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
913
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
914
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
915
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
916
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
917
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
918
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
919
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
920
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
921
+ WebkitOrder?: import("csstype").Property.Order | undefined;
922
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
923
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
924
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
925
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
926
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
927
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
928
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
929
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
930
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
931
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
932
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
933
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
934
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
935
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
936
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
937
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
938
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
939
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
940
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
941
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
942
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
943
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
944
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
945
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
946
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
947
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
948
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
949
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
950
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
951
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
952
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
953
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
954
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
955
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
956
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
957
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
958
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
959
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
960
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
961
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
962
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
963
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
964
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
965
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
966
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
967
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
968
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
969
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
970
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
971
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
972
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
973
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
974
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
975
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
976
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
977
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
978
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
979
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
980
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
981
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
982
+ azimuth?: import("csstype").Property.Azimuth | undefined;
983
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
984
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
985
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
986
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
987
+ boxLines?: import("csstype").Property.BoxLines | undefined;
988
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
989
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
990
+ boxPack?: import("csstype").Property.BoxPack | undefined;
991
+ clip?: import("csstype").Property.Clip | undefined;
992
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
993
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
994
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
995
+ imeMode?: import("csstype").Property.ImeMode | undefined;
996
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
997
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
998
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
999
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1000
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1001
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1002
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1003
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1004
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1005
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1006
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1007
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1008
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1009
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1010
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1011
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1012
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1013
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1014
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1015
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1016
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1017
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1018
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1019
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1020
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1021
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1022
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1023
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1024
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1025
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1026
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1027
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1028
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1029
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1030
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1031
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1032
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1033
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1034
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1035
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1036
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1037
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1038
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1039
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1040
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1041
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1042
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1043
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1044
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1045
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1046
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1047
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1048
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1049
+ MozTransform?: import("csstype").Property.Transform | undefined;
1050
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1051
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1052
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1053
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1054
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1055
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1056
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1057
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1058
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1059
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1060
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1061
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1062
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1063
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1064
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1065
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1066
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1067
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1068
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1069
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1070
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1071
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1072
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1073
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1074
+ OTransform?: import("csstype").Property.Transform | undefined;
1075
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1076
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1077
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1078
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1079
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1080
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1081
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1082
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1083
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1084
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1085
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1086
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1087
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1088
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1089
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1090
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1091
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1092
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1093
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1094
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1095
+ fill?: import("csstype").Property.Fill | undefined;
1096
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1097
+ fillRule?: import("csstype").Property.FillRule | undefined;
1098
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1099
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1100
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1101
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1102
+ marker?: import("csstype").Property.Marker | undefined;
1103
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1104
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1105
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1106
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1107
+ stopColor?: import("csstype").Property.StopColor | undefined;
1108
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1109
+ stroke?: import("csstype").Property.Stroke | undefined;
1110
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1111
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1112
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1113
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1114
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1115
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1116
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1117
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1118
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1119
+ };
1120
+ }, HTMLElement>;
26
1121
  export default Text;