@alifd/chat 0.1.12 → 0.1.13-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/es/button/index.d.ts +1 -9
  2. package/es/card/index.d.ts +1 -5
  3. package/es/card/view/card.d.ts +1 -4
  4. package/es/card/view/collapsable.d.ts +1 -1
  5. package/es/core/variables.scss +2 -0
  6. package/es/feedback/index.d.ts +1 -6
  7. package/es/feedback/index.js +1 -1
  8. package/es/feedback/main.scss +6 -3
  9. package/es/feedback/view/good.js +1 -1
  10. package/es/float-button/hooks/useDragable.js +0 -10
  11. package/es/float-button/index.d.ts +4 -26
  12. package/es/float-button/view/backtop.d.ts +1 -9
  13. package/es/float-button/view/drawer.d.ts +1 -4
  14. package/es/float-button/view/float-button.d.ts +1 -9
  15. package/es/float-button/view/inner-drawer.d.ts +1 -4
  16. package/es/icon/index.d.ts +13 -0
  17. package/es/icon/index.js +21 -0
  18. package/es/icon/main.scss +2 -0
  19. package/es/icon/style.d.ts +2 -0
  20. package/es/icon/style.js +2 -0
  21. package/es/icon/types.d.ts +0 -0
  22. package/es/icon/types.js +1 -0
  23. package/es/index.d.ts +2 -0
  24. package/es/index.js +3 -1
  25. package/es/message/index.d.ts +22 -0
  26. package/es/message/index.js +30 -0
  27. package/es/message/main.scss +2 -0
  28. package/es/message/style.d.ts +2 -0
  29. package/es/message/style.js +2 -0
  30. package/es/message/types.d.ts +195 -0
  31. package/es/message/types.js +1 -0
  32. package/es/tab/index.d.ts +1 -8
  33. package/es/tag/index.d.ts +1769 -10
  34. package/es/tag/index.js +2 -2
  35. package/es/text/index.d.ts +1 -7
  36. package/lib/button/index.d.ts +1 -9
  37. package/lib/card/index.d.ts +1 -5
  38. package/lib/card/view/card.d.ts +1 -4
  39. package/lib/card/view/collapsable.d.ts +1 -1
  40. package/lib/core/variables.scss +2 -0
  41. package/lib/feedback/index.d.ts +1 -6
  42. package/lib/feedback/index.js +1 -1
  43. package/lib/feedback/main.scss +6 -3
  44. package/lib/feedback/view/good.js +1 -1
  45. package/lib/float-button/hooks/useDragable.js +0 -10
  46. package/lib/float-button/index.d.ts +4 -26
  47. package/lib/float-button/view/backtop.d.ts +1 -9
  48. package/lib/float-button/view/drawer.d.ts +1 -4
  49. package/lib/float-button/view/float-button.d.ts +1 -9
  50. package/lib/float-button/view/inner-drawer.d.ts +1 -4
  51. package/lib/icon/index.d.ts +13 -0
  52. package/lib/icon/index.js +23 -0
  53. package/lib/icon/main.scss +2 -0
  54. package/lib/icon/style.d.ts +2 -0
  55. package/lib/icon/style.js +4 -0
  56. package/lib/icon/types.d.ts +0 -0
  57. package/lib/icon/types.js +1 -0
  58. package/lib/index.d.ts +2 -0
  59. package/lib/index.js +6 -2
  60. package/lib/message/index.d.ts +22 -0
  61. package/lib/message/index.js +32 -0
  62. package/lib/message/main.scss +2 -0
  63. package/lib/message/style.d.ts +2 -0
  64. package/lib/message/style.js +4 -0
  65. package/lib/message/types.d.ts +195 -0
  66. package/lib/message/types.js +2 -0
  67. package/lib/tab/index.d.ts +1 -8
  68. package/lib/tag/index.d.ts +1769 -10
  69. package/lib/tag/index.js +2 -2
  70. package/lib/text/index.d.ts +1 -7
  71. package/package.json +25 -1
@@ -6,16 +6,1775 @@
6
6
  * @when Tag
7
7
  */
8
8
  import React from 'react';
9
- import { Tag as NextTag } from '@alifd/next';
10
9
  import type { TagProps } from '@alifd/next/types/tag';
11
10
  export type { TagProps } from '@alifd/next/types/tag';
12
- declare const _default: {
13
- new (props: TagProps & React.RefAttributes<NextTag> & import("@alifd/next/types/config-provider/types").ComponentCommonProps, context?: unknown): import("@alifd/next/types/config-provider/types").ConfiguredComponent<TagProps & React.RefAttributes<NextTag> & import("@alifd/next/types/config-provider/types").ComponentCommonProps, NextTag>;
14
- contextType?: React.Context<any> | undefined;
15
- } & {
16
- displayName: string;
17
- defaultProps: Partial<TagProps & React.RefAttributes<NextTag>> | undefined;
18
- propTypes: React.WeakValidationMap<TagProps & React.RefAttributes<NextTag>> | undefined;
19
- $$typeof: symbol;
20
- };
11
+ declare const _default: import("@alifd/next/types/config-provider/types").ConfiguredComponentClass<Pick<TagProps & React.RefAttributes<import("@alifd/next/types/config-provider/types").ConfiguredComponent<(TagProps & import("@alifd/next/types/config-provider/types").ComponentCommonProps) & import("@alifd/next/types/config-provider/types").ComponentCommonProps, import("@alifd/next/types/config-provider/types").ConfiguredComponent<TagProps & import("@alifd/next/types/config-provider/types").ComponentCommonProps, {
12
+ __destroyed: boolean;
13
+ tagNode: HTMLDivElement | null;
14
+ componentWillUnmount(): void;
15
+ handleClose(from: import("@alifd/next/types/tag").CloseArea): void;
16
+ handleBodyClick(e: React.MouseEvent<HTMLDivElement, MouseEvent>): void;
17
+ onKeyDown: (e: React.KeyboardEvent<HTMLDivElement>) => void;
18
+ handleTailClick(e: React.MouseEvent<HTMLSpanElement, MouseEvent>): void;
19
+ handleAnimationInit(node: HTMLElement): void;
20
+ handleAnimationEnd(node: HTMLElement): void;
21
+ renderAnimatedTag(children: React.ReactNode, animationName: string): React.JSX.Element;
22
+ renderTailNode(): React.JSX.Element | null;
23
+ isPresetColor(): boolean;
24
+ getTagStyle(): {
25
+ accentColor?: import("csstype").Property.AccentColor | undefined;
26
+ alignContent?: import("csstype").Property.AlignContent | undefined;
27
+ alignItems?: import("csstype").Property.AlignItems | undefined;
28
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
29
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
30
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
31
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
32
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
33
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
34
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
35
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
36
+ animationName?: import("csstype").Property.AnimationName | undefined;
37
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
38
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<number | (string & {})> | undefined;
39
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<number | (string & {})> | undefined;
40
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
41
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
42
+ appearance?: import("csstype").Property.Appearance | undefined;
43
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
44
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
45
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
46
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
47
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
48
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
49
+ backgroundColor?: string | undefined;
50
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
51
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
52
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<number | (string & {})> | undefined;
53
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<number | (string & {})> | undefined;
54
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
55
+ backgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
56
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
57
+ blockSize?: import("csstype").Property.BlockSize<number | (string & {})> | undefined;
58
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
59
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
60
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
61
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<number | (string & {})> | undefined;
62
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
63
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
64
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<number | (string & {})> | undefined;
65
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
66
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<number | (string & {})> | undefined;
67
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
68
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
69
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
70
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
71
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<number | (string & {})> | undefined;
72
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
73
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<number | (string & {})> | undefined;
74
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<number | (string & {})> | undefined;
75
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<number | (string & {})> | undefined;
76
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
77
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
78
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
79
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<number | (string & {})> | undefined;
80
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
81
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
82
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
83
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<number | (string & {})> | undefined;
84
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
85
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
86
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<number | (string & {})> | undefined;
87
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
88
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<number | (string & {})> | undefined;
89
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
90
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
91
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<number | (string & {})> | undefined;
92
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
93
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
94
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<number | (string & {})> | undefined;
95
+ borderSpacing?: import("csstype").Property.BorderSpacing<number | (string & {})> | undefined;
96
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<number | (string & {})> | undefined;
97
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<number | (string & {})> | undefined;
98
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
99
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
100
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
101
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
102
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<number | (string & {})> | undefined;
103
+ bottom?: import("csstype").Property.Bottom<number | (string & {})> | undefined;
104
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
105
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
106
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
107
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
108
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
109
+ breakInside?: import("csstype").Property.BreakInside | undefined;
110
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
111
+ caretColor?: import("csstype").Property.CaretColor | undefined;
112
+ caretShape?: import("csstype").Property.CaretShape | undefined;
113
+ clear?: import("csstype").Property.Clear | undefined;
114
+ clipPath?: import("csstype").Property.ClipPath | undefined;
115
+ color?: string | undefined;
116
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
117
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
118
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
119
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
120
+ columnGap?: import("csstype").Property.ColumnGap<number | (string & {})> | undefined;
121
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
122
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
123
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
124
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
125
+ columnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
126
+ contain?: import("csstype").Property.Contain | undefined;
127
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<number | (string & {})> | undefined;
128
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<number | (string & {})> | undefined;
129
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<number | (string & {})> | undefined;
130
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<number | (string & {})> | undefined;
131
+ containerName?: import("csstype").Property.ContainerName | undefined;
132
+ containerType?: import("csstype").Property.ContainerType | undefined;
133
+ content?: import("csstype").Property.Content | undefined;
134
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
135
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
136
+ counterReset?: import("csstype").Property.CounterReset | undefined;
137
+ counterSet?: import("csstype").Property.CounterSet | undefined;
138
+ cursor?: import("csstype").Property.Cursor | undefined;
139
+ direction?: import("csstype").Property.Direction | undefined;
140
+ display?: import("csstype").Property.Display | undefined;
141
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
142
+ filter?: import("csstype").Property.Filter | undefined;
143
+ flexBasis?: import("csstype").Property.FlexBasis<number | (string & {})> | undefined;
144
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
145
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
146
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
147
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
148
+ float?: import("csstype").Property.Float | undefined;
149
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
150
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
151
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
152
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
153
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
154
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
155
+ fontSize?: import("csstype").Property.FontSize<number | (string & {})> | undefined;
156
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
157
+ fontSmooth?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
158
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
159
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
160
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
161
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
162
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
163
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
164
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
165
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
166
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
167
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
168
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
169
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
170
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
171
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
172
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
173
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
174
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
175
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
176
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<number | (string & {})> | undefined;
177
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
178
+ gridAutoRows?: import("csstype").Property.GridAutoRows<number | (string & {})> | undefined;
179
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
180
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
181
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
182
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
183
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
184
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<number | (string & {})> | undefined;
185
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<number | (string & {})> | undefined;
186
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
187
+ height?: import("csstype").Property.Height<number | (string & {})> | undefined;
188
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
189
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
190
+ hyphens?: import("csstype").Property.Hyphens | undefined;
191
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
192
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
193
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
194
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
195
+ inlineSize?: import("csstype").Property.InlineSize<number | (string & {})> | undefined;
196
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
197
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<number | (string & {})> | undefined;
198
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<number | (string & {})> | undefined;
199
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<number | (string & {})> | undefined;
200
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<number | (string & {})> | undefined;
201
+ isolation?: import("csstype").Property.Isolation | undefined;
202
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
203
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
204
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
205
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
206
+ left?: import("csstype").Property.Left<number | (string & {})> | undefined;
207
+ letterSpacing?: import("csstype").Property.LetterSpacing<number | (string & {})> | undefined;
208
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
209
+ lineHeight?: import("csstype").Property.LineHeight<number | (string & {})> | undefined;
210
+ lineHeightStep?: import("csstype").Property.LineHeightStep<number | (string & {})> | undefined;
211
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
212
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
213
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
214
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<number | (string & {})> | undefined;
215
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<number | (string & {})> | undefined;
216
+ marginBottom?: import("csstype").Property.MarginBottom<number | (string & {})> | undefined;
217
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
218
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
219
+ marginLeft?: import("csstype").Property.MarginLeft<number | (string & {})> | undefined;
220
+ marginRight?: import("csstype").Property.MarginRight<number | (string & {})> | undefined;
221
+ marginTop?: import("csstype").Property.MarginTop<number | (string & {})> | undefined;
222
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
223
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
224
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<number | (string & {})> | undefined;
225
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
226
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
227
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
228
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<number | (string & {})> | undefined;
229
+ maskClip?: import("csstype").Property.MaskClip | undefined;
230
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
231
+ maskImage?: import("csstype").Property.MaskImage | undefined;
232
+ maskMode?: import("csstype").Property.MaskMode | undefined;
233
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
234
+ maskPosition?: import("csstype").Property.MaskPosition<number | (string & {})> | undefined;
235
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
236
+ maskSize?: import("csstype").Property.MaskSize<number | (string & {})> | undefined;
237
+ maskType?: import("csstype").Property.MaskType | undefined;
238
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
239
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
240
+ mathShift?: import("csstype").Property.MathShift | undefined;
241
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
242
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<number | (string & {})> | undefined;
243
+ maxHeight?: import("csstype").Property.MaxHeight<number | (string & {})> | undefined;
244
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<number | (string & {})> | undefined;
245
+ maxLines?: import("csstype").Property.MaxLines | undefined;
246
+ maxWidth?: import("csstype").Property.MaxWidth<number | (string & {})> | undefined;
247
+ minBlockSize?: import("csstype").Property.MinBlockSize<number | (string & {})> | undefined;
248
+ minHeight?: import("csstype").Property.MinHeight<number | (string & {})> | undefined;
249
+ minInlineSize?: import("csstype").Property.MinInlineSize<number | (string & {})> | undefined;
250
+ minWidth?: import("csstype").Property.MinWidth<number | (string & {})> | undefined;
251
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
252
+ motionDistance?: import("csstype").Property.OffsetDistance<number | (string & {})> | undefined;
253
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
254
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
255
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
256
+ objectPosition?: import("csstype").Property.ObjectPosition<number | (string & {})> | undefined;
257
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<number | (string & {})> | undefined;
258
+ offsetDistance?: import("csstype").Property.OffsetDistance<number | (string & {})> | undefined;
259
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
260
+ offsetPosition?: import("csstype").Property.OffsetPosition<number | (string & {})> | undefined;
261
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
262
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
263
+ opacity?: import("csstype").Property.Opacity | undefined;
264
+ order?: import("csstype").Property.Order | undefined;
265
+ orphans?: import("csstype").Property.Orphans | undefined;
266
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
267
+ outlineOffset?: import("csstype").Property.OutlineOffset<number | (string & {})> | undefined;
268
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
269
+ outlineWidth?: import("csstype").Property.OutlineWidth<number | (string & {})> | undefined;
270
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
271
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
272
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
273
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<number | (string & {})> | undefined;
274
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
275
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
276
+ overflowX?: import("csstype").Property.OverflowX | undefined;
277
+ overflowY?: import("csstype").Property.OverflowY | undefined;
278
+ overlay?: import("csstype").Property.Overlay | undefined;
279
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
280
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
281
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
282
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
283
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<number | (string & {})> | undefined;
284
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<number | (string & {})> | undefined;
285
+ paddingBottom?: import("csstype").Property.PaddingBottom<number | (string & {})> | undefined;
286
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
287
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
288
+ paddingLeft?: import("csstype").Property.PaddingLeft<number | (string & {})> | undefined;
289
+ paddingRight?: import("csstype").Property.PaddingRight<number | (string & {})> | undefined;
290
+ paddingTop?: import("csstype").Property.PaddingTop<number | (string & {})> | undefined;
291
+ page?: import("csstype").Property.Page | undefined;
292
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
293
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
294
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
295
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
296
+ perspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
297
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
298
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
299
+ position?: import("csstype").Property.Position | undefined;
300
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
301
+ quotes?: import("csstype").Property.Quotes | undefined;
302
+ resize?: import("csstype").Property.Resize | undefined;
303
+ right?: import("csstype").Property.Right<number | (string & {})> | undefined;
304
+ rotate?: import("csstype").Property.Rotate | undefined;
305
+ rowGap?: import("csstype").Property.RowGap<number | (string & {})> | undefined;
306
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
307
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
308
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
309
+ scale?: import("csstype").Property.Scale | undefined;
310
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
311
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<number | (string & {})> | undefined;
312
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<number | (string & {})> | undefined;
313
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<number | (string & {})> | undefined;
314
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<number | (string & {})> | undefined;
315
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<number | (string & {})> | undefined;
316
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<number | (string & {})> | undefined;
317
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<number | (string & {})> | undefined;
318
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<number | (string & {})> | undefined;
319
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<number | (string & {})> | undefined;
320
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<number | (string & {})> | undefined;
321
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<number | (string & {})> | undefined;
322
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<number | (string & {})> | undefined;
323
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<number | (string & {})> | undefined;
324
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<number | (string & {})> | undefined;
325
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<number | (string & {})> | undefined;
326
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<number | (string & {})> | undefined;
327
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
328
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<number | (string & {})> | undefined;
329
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<number | (string & {})> | undefined;
330
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<number | (string & {})> | undefined;
331
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<number | (string & {})> | undefined;
332
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
333
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
334
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
335
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
336
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
337
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
338
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
339
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
340
+ shapeMargin?: import("csstype").Property.ShapeMargin<number | (string & {})> | undefined;
341
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
342
+ tabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
343
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
344
+ textAlign?: import("csstype").Property.TextAlign | undefined;
345
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
346
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
347
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
348
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
349
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
350
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
351
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
352
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<number | (string & {})> | undefined;
353
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
354
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
355
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
356
+ textIndent?: import("csstype").Property.TextIndent<number | (string & {})> | undefined;
357
+ textJustify?: import("csstype").Property.TextJustify | undefined;
358
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
359
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
360
+ textRendering?: import("csstype").Property.TextRendering | undefined;
361
+ textShadow?: import("csstype").Property.TextShadow | undefined;
362
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
363
+ textTransform?: import("csstype").Property.TextTransform | undefined;
364
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<number | (string & {})> | undefined;
365
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
366
+ textWrap?: import("csstype").Property.TextWrap | undefined;
367
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
368
+ top?: import("csstype").Property.Top<number | (string & {})> | undefined;
369
+ touchAction?: import("csstype").Property.TouchAction | undefined;
370
+ transform?: import("csstype").Property.Transform | undefined;
371
+ transformBox?: import("csstype").Property.TransformBox | undefined;
372
+ transformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
373
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
374
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
375
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
376
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
377
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
378
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
379
+ translate?: import("csstype").Property.Translate<number | (string & {})> | undefined;
380
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
381
+ userSelect?: import("csstype").Property.UserSelect | undefined;
382
+ verticalAlign?: import("csstype").Property.VerticalAlign<number | (string & {})> | undefined;
383
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
384
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<number | (string & {})> | undefined;
385
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
386
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
387
+ visibility?: import("csstype").Property.Visibility | undefined;
388
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
389
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
390
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
391
+ widows?: import("csstype").Property.Widows | undefined;
392
+ width?: import("csstype").Property.Width<number | (string & {})> | undefined;
393
+ willChange?: import("csstype").Property.WillChange | undefined;
394
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
395
+ wordSpacing?: import("csstype").Property.WordSpacing<number | (string & {})> | undefined;
396
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
397
+ writingMode?: import("csstype").Property.WritingMode | undefined;
398
+ zIndex?: import("csstype").Property.ZIndex | undefined;
399
+ zoom?: import("csstype").Property.Zoom | undefined;
400
+ all?: import("csstype").Globals | undefined;
401
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
402
+ animationRange?: import("csstype").Property.AnimationRange<number | (string & {})> | undefined;
403
+ background?: import("csstype").Property.Background<number | (string & {})> | undefined;
404
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<number | (string & {})> | undefined;
405
+ border?: import("csstype").Property.Border<number | (string & {})> | undefined;
406
+ borderBlock?: import("csstype").Property.BorderBlock<number | (string & {})> | undefined;
407
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<number | (string & {})> | undefined;
408
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<number | (string & {})> | undefined;
409
+ borderBottom?: import("csstype").Property.BorderBottom<number | (string & {})> | undefined;
410
+ borderColor?: string | undefined;
411
+ borderImage?: import("csstype").Property.BorderImage | undefined;
412
+ borderInline?: import("csstype").Property.BorderInline<number | (string & {})> | undefined;
413
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<number | (string & {})> | undefined;
414
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<number | (string & {})> | undefined;
415
+ borderLeft?: import("csstype").Property.BorderLeft<number | (string & {})> | undefined;
416
+ borderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
417
+ borderRight?: import("csstype").Property.BorderRight<number | (string & {})> | undefined;
418
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
419
+ borderTop?: import("csstype").Property.BorderTop<number | (string & {})> | undefined;
420
+ borderWidth?: import("csstype").Property.BorderWidth<number | (string & {})> | undefined;
421
+ caret?: import("csstype").Property.Caret | undefined;
422
+ columnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
423
+ columns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
424
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<number | (string & {})> | undefined;
425
+ container?: import("csstype").Property.Container | undefined;
426
+ flex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
427
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
428
+ font?: import("csstype").Property.Font | undefined;
429
+ gap?: import("csstype").Property.Gap<number | (string & {})> | undefined;
430
+ grid?: import("csstype").Property.Grid | undefined;
431
+ gridArea?: import("csstype").Property.GridArea | undefined;
432
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
433
+ gridRow?: import("csstype").Property.GridRow | undefined;
434
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
435
+ inset?: import("csstype").Property.Inset<number | (string & {})> | undefined;
436
+ insetBlock?: import("csstype").Property.InsetBlock<number | (string & {})> | undefined;
437
+ insetInline?: import("csstype").Property.InsetInline<number | (string & {})> | undefined;
438
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
439
+ listStyle?: import("csstype").Property.ListStyle | undefined;
440
+ margin?: import("csstype").Property.Margin<number | (string & {})> | undefined;
441
+ marginBlock?: import("csstype").Property.MarginBlock<number | (string & {})> | undefined;
442
+ marginInline?: import("csstype").Property.MarginInline<number | (string & {})> | undefined;
443
+ mask?: import("csstype").Property.Mask<number | (string & {})> | undefined;
444
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
445
+ motion?: import("csstype").Property.Offset<number | (string & {})> | undefined;
446
+ offset?: import("csstype").Property.Offset<number | (string & {})> | undefined;
447
+ outline?: import("csstype").Property.Outline<number | (string & {})> | undefined;
448
+ overflow?: import("csstype").Property.Overflow | undefined;
449
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
450
+ padding?: import("csstype").Property.Padding<number | (string & {})> | undefined;
451
+ paddingBlock?: import("csstype").Property.PaddingBlock<number | (string & {})> | undefined;
452
+ paddingInline?: import("csstype").Property.PaddingInline<number | (string & {})> | undefined;
453
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
454
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
455
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
456
+ scrollMargin?: import("csstype").Property.ScrollMargin<number | (string & {})> | undefined;
457
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<number | (string & {})> | undefined;
458
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<number | (string & {})> | undefined;
459
+ scrollPadding?: import("csstype").Property.ScrollPadding<number | (string & {})> | undefined;
460
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<number | (string & {})> | undefined;
461
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<number | (string & {})> | undefined;
462
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<number | (string & {})> | undefined;
463
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
464
+ textDecoration?: import("csstype").Property.TextDecoration<number | (string & {})> | undefined;
465
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
466
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
467
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
468
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
469
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
470
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
471
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
472
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
473
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
474
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
475
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
476
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
477
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
478
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
479
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
480
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
481
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<number | (string & {})> | undefined;
482
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
483
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
484
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
485
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
486
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
487
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
488
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
489
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
490
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
491
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
492
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
493
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
494
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
495
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
496
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
497
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
498
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
499
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
500
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
501
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
502
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
503
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<number | (string & {})> | undefined;
504
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<number | (string & {})> | undefined;
505
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<number | (string & {})> | undefined;
506
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<number | (string & {})> | undefined;
507
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
508
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
509
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
510
+ MozTabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
511
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
512
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
513
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
514
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
515
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
516
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
517
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
518
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
519
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
520
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
521
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
522
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
523
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
524
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
525
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
526
+ msFilter?: import("csstype").Property.MsFilter | undefined;
527
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
528
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
529
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
530
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
531
+ msGridColumns?: import("csstype").Property.MsGridColumns<number | (string & {})> | undefined;
532
+ msGridRows?: import("csstype").Property.MsGridRows<number | (string & {})> | undefined;
533
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
534
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
535
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
536
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<number | (string & {})> | undefined;
537
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
538
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
539
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
540
+ msOrder?: import("csstype").Property.Order | undefined;
541
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
542
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
543
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
544
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
545
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<number | (string & {})> | undefined;
546
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<number | (string & {})> | undefined;
547
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<number | (string & {})> | undefined;
548
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<number | (string & {})> | undefined;
549
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
550
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
551
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
552
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
553
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
554
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
555
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
556
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
557
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
558
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
559
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
560
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
561
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
562
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
563
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
564
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
565
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
566
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
567
+ msTransform?: import("csstype").Property.Transform | undefined;
568
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
569
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
570
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
571
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
572
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
573
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
574
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
575
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
576
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<number | (string & {})> | undefined;
577
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
578
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
579
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
580
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
581
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
582
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
583
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
584
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
585
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
586
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
587
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
588
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
589
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
590
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
591
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
592
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
593
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
594
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
595
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
596
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
597
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
598
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<number | (string & {})> | undefined;
599
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
600
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
601
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
602
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
603
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
604
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
605
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<number | (string & {})> | undefined;
606
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
607
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
608
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
609
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
610
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
611
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
612
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
613
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
614
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
615
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
616
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
617
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<number | (string & {})> | undefined;
618
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
619
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
620
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
621
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
622
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
623
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
624
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
625
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
626
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
627
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
628
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
629
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
630
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
631
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
632
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
633
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
634
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
635
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<number | (string & {})> | undefined;
636
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
637
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
638
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
639
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<number | (string & {})> | undefined;
640
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
641
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
642
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
643
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
644
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<number | (string & {})> | undefined;
645
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<number | (string & {})> | undefined;
646
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<number | (string & {})> | undefined;
647
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
648
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
649
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
650
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<number | (string & {})> | undefined;
651
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<number | (string & {})> | undefined;
652
+ WebkitOrder?: import("csstype").Property.Order | undefined;
653
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
654
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
655
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
656
+ WebkitPerspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
657
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
658
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
659
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
660
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
661
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<number | (string & {})> | undefined;
662
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
663
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
664
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
665
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
666
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
667
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
668
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
669
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
670
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
671
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
672
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
673
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
674
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
675
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<number | (string & {})> | undefined;
676
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
677
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
678
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
679
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
680
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
681
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
682
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
683
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
684
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
685
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
686
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
687
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
688
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
689
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
690
+ MozColumnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
691
+ MozColumns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
692
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<number | (string & {})> | undefined;
693
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
694
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
695
+ msFlex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
696
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
697
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
698
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
699
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
700
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
701
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<number | (string & {})> | undefined;
702
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
703
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
704
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
705
+ WebkitColumns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
706
+ WebkitFlex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
707
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
708
+ WebkitMask?: import("csstype").Property.WebkitMask<number | (string & {})> | undefined;
709
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
710
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
711
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<number | (string & {})> | undefined;
712
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
713
+ azimuth?: import("csstype").Property.Azimuth | undefined;
714
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
715
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
716
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
717
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
718
+ boxLines?: import("csstype").Property.BoxLines | undefined;
719
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
720
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
721
+ boxPack?: import("csstype").Property.BoxPack | undefined;
722
+ clip?: import("csstype").Property.Clip | undefined;
723
+ gridColumnGap?: import("csstype").Property.GridColumnGap<number | (string & {})> | undefined;
724
+ gridGap?: import("csstype").Property.GridGap<number | (string & {})> | undefined;
725
+ gridRowGap?: import("csstype").Property.GridRowGap<number | (string & {})> | undefined;
726
+ imeMode?: import("csstype").Property.ImeMode | undefined;
727
+ offsetBlock?: import("csstype").Property.InsetBlock<number | (string & {})> | undefined;
728
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<number | (string & {})> | undefined;
729
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<number | (string & {})> | undefined;
730
+ offsetInline?: import("csstype").Property.InsetInline<number | (string & {})> | undefined;
731
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<number | (string & {})> | undefined;
732
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<number | (string & {})> | undefined;
733
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<number | (string & {})> | undefined;
734
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<number | (string & {})> | undefined;
735
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
736
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
737
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
738
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
739
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
740
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
741
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
742
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
743
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
744
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
745
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
746
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
747
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
748
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
749
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
750
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
751
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
752
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
753
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
754
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
755
+ MozBorderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
756
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
757
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
758
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
759
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
760
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
761
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
762
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
763
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
764
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
765
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
766
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
767
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
768
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
769
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
770
+ MozOutline?: import("csstype").Property.Outline<number | (string & {})> | undefined;
771
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
772
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
773
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<number | (string & {})> | undefined;
774
+ MozPerspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
775
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
776
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
777
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
778
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
779
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
780
+ MozTransform?: import("csstype").Property.Transform | undefined;
781
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
782
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
783
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
784
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
785
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
786
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
787
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
788
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
789
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
790
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
791
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
792
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
793
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
794
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
795
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
796
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
797
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
798
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
799
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
800
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
801
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
802
+ OObjectPosition?: import("csstype").Property.ObjectPosition<number | (string & {})> | undefined;
803
+ OTabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
804
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
805
+ OTransform?: import("csstype").Property.Transform | undefined;
806
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
807
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
808
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
809
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
810
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
811
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
812
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
813
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
814
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
815
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
816
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
817
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
818
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
819
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
820
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
821
+ baselineShift?: import("csstype").Property.BaselineShift<number | (string & {})> | undefined;
822
+ clipRule?: import("csstype").Property.ClipRule | undefined;
823
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
824
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
825
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
826
+ fill?: import("csstype").Property.Fill | undefined;
827
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
828
+ fillRule?: import("csstype").Property.FillRule | undefined;
829
+ floodColor?: import("csstype").Property.FloodColor | undefined;
830
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
831
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
832
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
833
+ marker?: import("csstype").Property.Marker | undefined;
834
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
835
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
836
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
837
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
838
+ stopColor?: import("csstype").Property.StopColor | undefined;
839
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
840
+ stroke?: import("csstype").Property.Stroke | undefined;
841
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<number | (string & {})> | undefined;
842
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<number | (string & {})> | undefined;
843
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
844
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
845
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
846
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
847
+ strokeWidth?: import("csstype").Property.StrokeWidth<number | (string & {})> | undefined;
848
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
849
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
850
+ };
851
+ render(): React.JSX.Element | null;
852
+ context: any;
853
+ setState<K extends "visible">(state: {
854
+ visible: boolean;
855
+ } | ((prevState: Readonly<{
856
+ visible: boolean;
857
+ }>, props: Readonly<TagProps>) => {
858
+ visible: boolean;
859
+ } | Pick<{
860
+ visible: boolean;
861
+ }, K> | null) | Pick<{
862
+ visible: boolean;
863
+ }, K> | null, callback?: (() => void) | undefined): void;
864
+ forceUpdate(callback?: (() => void) | undefined): void;
865
+ readonly props: Readonly<TagProps> & Readonly<{
866
+ children?: React.ReactNode;
867
+ }>;
868
+ state: Readonly<{
869
+ visible: boolean;
870
+ }>;
871
+ refs: {
872
+ [key: string]: React.ReactInstance;
873
+ };
874
+ componentDidMount?(): void;
875
+ shouldComponentUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
876
+ visible: boolean;
877
+ }>, nextContext: any): boolean;
878
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
879
+ getSnapshotBeforeUpdate?(prevProps: Readonly<TagProps>, prevState: Readonly<{
880
+ visible: boolean;
881
+ }>): any;
882
+ componentDidUpdate?(prevProps: Readonly<TagProps>, prevState: Readonly<{
883
+ visible: boolean;
884
+ }>, snapshot?: any): void;
885
+ componentWillMount?(): void;
886
+ UNSAFE_componentWillMount?(): void;
887
+ componentWillReceiveProps?(nextProps: Readonly<TagProps>, nextContext: any): void;
888
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<TagProps>, nextContext: any): void;
889
+ componentWillUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
890
+ visible: boolean;
891
+ }>, nextContext: any): void;
892
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
893
+ visible: boolean;
894
+ }>, nextContext: any): void;
895
+ }>>>, "size" | "type" | "onClick" | "disabled" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "warning" | "key" | "locale" | "pure" | "device" | "rtl" | "errorBoundary" | "closable" | "onClose" | "afterClose" | "animation" | "afterAppear" | "_shape" | "closeArea"> & import("@alifd/next/types/config-provider/types").ComponentCommonProps, import("@alifd/next/types/config-provider/types").ConfiguredComponent<(TagProps & import("@alifd/next/types/config-provider/types").ComponentCommonProps) & import("@alifd/next/types/config-provider/types").ComponentCommonProps, import("@alifd/next/types/config-provider/types").ConfiguredComponent<TagProps & import("@alifd/next/types/config-provider/types").ComponentCommonProps, {
896
+ __destroyed: boolean;
897
+ tagNode: HTMLDivElement | null;
898
+ componentWillUnmount(): void;
899
+ handleClose(from: import("@alifd/next/types/tag").CloseArea): void;
900
+ handleBodyClick(e: React.MouseEvent<HTMLDivElement, MouseEvent>): void;
901
+ onKeyDown: (e: React.KeyboardEvent<HTMLDivElement>) => void;
902
+ handleTailClick(e: React.MouseEvent<HTMLSpanElement, MouseEvent>): void;
903
+ handleAnimationInit(node: HTMLElement): void;
904
+ handleAnimationEnd(node: HTMLElement): void;
905
+ renderAnimatedTag(children: React.ReactNode, animationName: string): React.JSX.Element;
906
+ renderTailNode(): React.JSX.Element | null;
907
+ isPresetColor(): boolean;
908
+ getTagStyle(): {
909
+ accentColor?: import("csstype").Property.AccentColor | undefined;
910
+ alignContent?: import("csstype").Property.AlignContent | undefined;
911
+ alignItems?: import("csstype").Property.AlignItems | undefined;
912
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
913
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
914
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
915
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
916
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
917
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
918
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
919
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
920
+ animationName?: import("csstype").Property.AnimationName | undefined;
921
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
922
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<number | (string & {})> | undefined;
923
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<number | (string & {})> | undefined;
924
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
925
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
926
+ appearance?: import("csstype").Property.Appearance | undefined;
927
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
928
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
929
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
930
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
931
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
932
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
933
+ backgroundColor?: string | undefined;
934
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
935
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
936
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<number | (string & {})> | undefined;
937
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<number | (string & {})> | undefined;
938
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
939
+ backgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
940
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
941
+ blockSize?: import("csstype").Property.BlockSize<number | (string & {})> | undefined;
942
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
943
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
944
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
945
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<number | (string & {})> | undefined;
946
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
947
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
948
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<number | (string & {})> | undefined;
949
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
950
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<number | (string & {})> | undefined;
951
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
952
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
953
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
954
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
955
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<number | (string & {})> | undefined;
956
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
957
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<number | (string & {})> | undefined;
958
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<number | (string & {})> | undefined;
959
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<number | (string & {})> | undefined;
960
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
961
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
962
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
963
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<number | (string & {})> | undefined;
964
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
965
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
966
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
967
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<number | (string & {})> | undefined;
968
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
969
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
970
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<number | (string & {})> | undefined;
971
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
972
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<number | (string & {})> | undefined;
973
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
974
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
975
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<number | (string & {})> | undefined;
976
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
977
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
978
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<number | (string & {})> | undefined;
979
+ borderSpacing?: import("csstype").Property.BorderSpacing<number | (string & {})> | undefined;
980
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<number | (string & {})> | undefined;
981
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<number | (string & {})> | undefined;
982
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
983
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
984
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
985
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
986
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<number | (string & {})> | undefined;
987
+ bottom?: import("csstype").Property.Bottom<number | (string & {})> | undefined;
988
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
989
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
990
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
991
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
992
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
993
+ breakInside?: import("csstype").Property.BreakInside | undefined;
994
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
995
+ caretColor?: import("csstype").Property.CaretColor | undefined;
996
+ caretShape?: import("csstype").Property.CaretShape | undefined;
997
+ clear?: import("csstype").Property.Clear | undefined;
998
+ clipPath?: import("csstype").Property.ClipPath | undefined;
999
+ color?: string | undefined;
1000
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1001
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1002
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1003
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1004
+ columnGap?: import("csstype").Property.ColumnGap<number | (string & {})> | undefined;
1005
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1006
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1007
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
1008
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1009
+ columnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
1010
+ contain?: import("csstype").Property.Contain | undefined;
1011
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<number | (string & {})> | undefined;
1012
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<number | (string & {})> | undefined;
1013
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<number | (string & {})> | undefined;
1014
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<number | (string & {})> | undefined;
1015
+ containerName?: import("csstype").Property.ContainerName | undefined;
1016
+ containerType?: import("csstype").Property.ContainerType | undefined;
1017
+ content?: import("csstype").Property.Content | undefined;
1018
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1019
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1020
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1021
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1022
+ cursor?: import("csstype").Property.Cursor | undefined;
1023
+ direction?: import("csstype").Property.Direction | undefined;
1024
+ display?: import("csstype").Property.Display | undefined;
1025
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1026
+ filter?: import("csstype").Property.Filter | undefined;
1027
+ flexBasis?: import("csstype").Property.FlexBasis<number | (string & {})> | undefined;
1028
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1029
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1030
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1031
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1032
+ float?: import("csstype").Property.Float | undefined;
1033
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1034
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1035
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1036
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1037
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1038
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1039
+ fontSize?: import("csstype").Property.FontSize<number | (string & {})> | undefined;
1040
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1041
+ fontSmooth?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
1042
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1043
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1044
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1045
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1046
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1047
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1048
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1049
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1050
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1051
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1052
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1053
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1054
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1055
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1056
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1057
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1058
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1059
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1060
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<number | (string & {})> | undefined;
1061
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1062
+ gridAutoRows?: import("csstype").Property.GridAutoRows<number | (string & {})> | undefined;
1063
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1064
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1065
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1066
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1067
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1068
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<number | (string & {})> | undefined;
1069
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<number | (string & {})> | undefined;
1070
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1071
+ height?: import("csstype").Property.Height<number | (string & {})> | undefined;
1072
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1073
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1074
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1075
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1076
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1077
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1078
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1079
+ inlineSize?: import("csstype").Property.InlineSize<number | (string & {})> | undefined;
1080
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1081
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<number | (string & {})> | undefined;
1082
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<number | (string & {})> | undefined;
1083
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<number | (string & {})> | undefined;
1084
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<number | (string & {})> | undefined;
1085
+ isolation?: import("csstype").Property.Isolation | undefined;
1086
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1087
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1088
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1089
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1090
+ left?: import("csstype").Property.Left<number | (string & {})> | undefined;
1091
+ letterSpacing?: import("csstype").Property.LetterSpacing<number | (string & {})> | undefined;
1092
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1093
+ lineHeight?: import("csstype").Property.LineHeight<number | (string & {})> | undefined;
1094
+ lineHeightStep?: import("csstype").Property.LineHeightStep<number | (string & {})> | undefined;
1095
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1096
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1097
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1098
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<number | (string & {})> | undefined;
1099
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<number | (string & {})> | undefined;
1100
+ marginBottom?: import("csstype").Property.MarginBottom<number | (string & {})> | undefined;
1101
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
1102
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
1103
+ marginLeft?: import("csstype").Property.MarginLeft<number | (string & {})> | undefined;
1104
+ marginRight?: import("csstype").Property.MarginRight<number | (string & {})> | undefined;
1105
+ marginTop?: import("csstype").Property.MarginTop<number | (string & {})> | undefined;
1106
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1107
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1108
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<number | (string & {})> | undefined;
1109
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1110
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1111
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1112
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<number | (string & {})> | undefined;
1113
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1114
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1115
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1116
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1117
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1118
+ maskPosition?: import("csstype").Property.MaskPosition<number | (string & {})> | undefined;
1119
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1120
+ maskSize?: import("csstype").Property.MaskSize<number | (string & {})> | undefined;
1121
+ maskType?: import("csstype").Property.MaskType | undefined;
1122
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1123
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1124
+ mathShift?: import("csstype").Property.MathShift | undefined;
1125
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1126
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<number | (string & {})> | undefined;
1127
+ maxHeight?: import("csstype").Property.MaxHeight<number | (string & {})> | undefined;
1128
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<number | (string & {})> | undefined;
1129
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1130
+ maxWidth?: import("csstype").Property.MaxWidth<number | (string & {})> | undefined;
1131
+ minBlockSize?: import("csstype").Property.MinBlockSize<number | (string & {})> | undefined;
1132
+ minHeight?: import("csstype").Property.MinHeight<number | (string & {})> | undefined;
1133
+ minInlineSize?: import("csstype").Property.MinInlineSize<number | (string & {})> | undefined;
1134
+ minWidth?: import("csstype").Property.MinWidth<number | (string & {})> | undefined;
1135
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1136
+ motionDistance?: import("csstype").Property.OffsetDistance<number | (string & {})> | undefined;
1137
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1138
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1139
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1140
+ objectPosition?: import("csstype").Property.ObjectPosition<number | (string & {})> | undefined;
1141
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<number | (string & {})> | undefined;
1142
+ offsetDistance?: import("csstype").Property.OffsetDistance<number | (string & {})> | undefined;
1143
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1144
+ offsetPosition?: import("csstype").Property.OffsetPosition<number | (string & {})> | undefined;
1145
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1146
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1147
+ opacity?: import("csstype").Property.Opacity | undefined;
1148
+ order?: import("csstype").Property.Order | undefined;
1149
+ orphans?: import("csstype").Property.Orphans | undefined;
1150
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1151
+ outlineOffset?: import("csstype").Property.OutlineOffset<number | (string & {})> | undefined;
1152
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1153
+ outlineWidth?: import("csstype").Property.OutlineWidth<number | (string & {})> | undefined;
1154
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1155
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1156
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1157
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<number | (string & {})> | undefined;
1158
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1159
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1160
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1161
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1162
+ overlay?: import("csstype").Property.Overlay | undefined;
1163
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1164
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1165
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1166
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1167
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<number | (string & {})> | undefined;
1168
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<number | (string & {})> | undefined;
1169
+ paddingBottom?: import("csstype").Property.PaddingBottom<number | (string & {})> | undefined;
1170
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
1171
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
1172
+ paddingLeft?: import("csstype").Property.PaddingLeft<number | (string & {})> | undefined;
1173
+ paddingRight?: import("csstype").Property.PaddingRight<number | (string & {})> | undefined;
1174
+ paddingTop?: import("csstype").Property.PaddingTop<number | (string & {})> | undefined;
1175
+ page?: import("csstype").Property.Page | undefined;
1176
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1177
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1178
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1179
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1180
+ perspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
1181
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
1182
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1183
+ position?: import("csstype").Property.Position | undefined;
1184
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1185
+ quotes?: import("csstype").Property.Quotes | undefined;
1186
+ resize?: import("csstype").Property.Resize | undefined;
1187
+ right?: import("csstype").Property.Right<number | (string & {})> | undefined;
1188
+ rotate?: import("csstype").Property.Rotate | undefined;
1189
+ rowGap?: import("csstype").Property.RowGap<number | (string & {})> | undefined;
1190
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1191
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1192
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1193
+ scale?: import("csstype").Property.Scale | undefined;
1194
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1195
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<number | (string & {})> | undefined;
1196
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<number | (string & {})> | undefined;
1197
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<number | (string & {})> | undefined;
1198
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<number | (string & {})> | undefined;
1199
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<number | (string & {})> | undefined;
1200
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<number | (string & {})> | undefined;
1201
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<number | (string & {})> | undefined;
1202
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<number | (string & {})> | undefined;
1203
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<number | (string & {})> | undefined;
1204
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<number | (string & {})> | undefined;
1205
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<number | (string & {})> | undefined;
1206
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<number | (string & {})> | undefined;
1207
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<number | (string & {})> | undefined;
1208
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<number | (string & {})> | undefined;
1209
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<number | (string & {})> | undefined;
1210
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<number | (string & {})> | undefined;
1211
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1212
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<number | (string & {})> | undefined;
1213
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<number | (string & {})> | undefined;
1214
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<number | (string & {})> | undefined;
1215
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<number | (string & {})> | undefined;
1216
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1217
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1218
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1219
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1220
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1221
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1222
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1223
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1224
+ shapeMargin?: import("csstype").Property.ShapeMargin<number | (string & {})> | undefined;
1225
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1226
+ tabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
1227
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1228
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1229
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1230
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1231
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1232
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1233
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1234
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1235
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1236
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<number | (string & {})> | undefined;
1237
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1238
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1239
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1240
+ textIndent?: import("csstype").Property.TextIndent<number | (string & {})> | undefined;
1241
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1242
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1243
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1244
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1245
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1246
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1247
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1248
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<number | (string & {})> | undefined;
1249
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1250
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1251
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1252
+ top?: import("csstype").Property.Top<number | (string & {})> | undefined;
1253
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1254
+ transform?: import("csstype").Property.Transform | undefined;
1255
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1256
+ transformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
1257
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1258
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1259
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1260
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1261
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1262
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1263
+ translate?: import("csstype").Property.Translate<number | (string & {})> | undefined;
1264
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1265
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1266
+ verticalAlign?: import("csstype").Property.VerticalAlign<number | (string & {})> | undefined;
1267
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1268
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<number | (string & {})> | undefined;
1269
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1270
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1271
+ visibility?: import("csstype").Property.Visibility | undefined;
1272
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1273
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1274
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
1275
+ widows?: import("csstype").Property.Widows | undefined;
1276
+ width?: import("csstype").Property.Width<number | (string & {})> | undefined;
1277
+ willChange?: import("csstype").Property.WillChange | undefined;
1278
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1279
+ wordSpacing?: import("csstype").Property.WordSpacing<number | (string & {})> | undefined;
1280
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1281
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1282
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1283
+ zoom?: import("csstype").Property.Zoom | undefined;
1284
+ all?: import("csstype").Globals | undefined;
1285
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1286
+ animationRange?: import("csstype").Property.AnimationRange<number | (string & {})> | undefined;
1287
+ background?: import("csstype").Property.Background<number | (string & {})> | undefined;
1288
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<number | (string & {})> | undefined;
1289
+ border?: import("csstype").Property.Border<number | (string & {})> | undefined;
1290
+ borderBlock?: import("csstype").Property.BorderBlock<number | (string & {})> | undefined;
1291
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<number | (string & {})> | undefined;
1292
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<number | (string & {})> | undefined;
1293
+ borderBottom?: import("csstype").Property.BorderBottom<number | (string & {})> | undefined;
1294
+ borderColor?: string | undefined;
1295
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1296
+ borderInline?: import("csstype").Property.BorderInline<number | (string & {})> | undefined;
1297
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<number | (string & {})> | undefined;
1298
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<number | (string & {})> | undefined;
1299
+ borderLeft?: import("csstype").Property.BorderLeft<number | (string & {})> | undefined;
1300
+ borderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
1301
+ borderRight?: import("csstype").Property.BorderRight<number | (string & {})> | undefined;
1302
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1303
+ borderTop?: import("csstype").Property.BorderTop<number | (string & {})> | undefined;
1304
+ borderWidth?: import("csstype").Property.BorderWidth<number | (string & {})> | undefined;
1305
+ caret?: import("csstype").Property.Caret | undefined;
1306
+ columnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
1307
+ columns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
1308
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<number | (string & {})> | undefined;
1309
+ container?: import("csstype").Property.Container | undefined;
1310
+ flex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
1311
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1312
+ font?: import("csstype").Property.Font | undefined;
1313
+ gap?: import("csstype").Property.Gap<number | (string & {})> | undefined;
1314
+ grid?: import("csstype").Property.Grid | undefined;
1315
+ gridArea?: import("csstype").Property.GridArea | undefined;
1316
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1317
+ gridRow?: import("csstype").Property.GridRow | undefined;
1318
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1319
+ inset?: import("csstype").Property.Inset<number | (string & {})> | undefined;
1320
+ insetBlock?: import("csstype").Property.InsetBlock<number | (string & {})> | undefined;
1321
+ insetInline?: import("csstype").Property.InsetInline<number | (string & {})> | undefined;
1322
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1323
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1324
+ margin?: import("csstype").Property.Margin<number | (string & {})> | undefined;
1325
+ marginBlock?: import("csstype").Property.MarginBlock<number | (string & {})> | undefined;
1326
+ marginInline?: import("csstype").Property.MarginInline<number | (string & {})> | undefined;
1327
+ mask?: import("csstype").Property.Mask<number | (string & {})> | undefined;
1328
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1329
+ motion?: import("csstype").Property.Offset<number | (string & {})> | undefined;
1330
+ offset?: import("csstype").Property.Offset<number | (string & {})> | undefined;
1331
+ outline?: import("csstype").Property.Outline<number | (string & {})> | undefined;
1332
+ overflow?: import("csstype").Property.Overflow | undefined;
1333
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1334
+ padding?: import("csstype").Property.Padding<number | (string & {})> | undefined;
1335
+ paddingBlock?: import("csstype").Property.PaddingBlock<number | (string & {})> | undefined;
1336
+ paddingInline?: import("csstype").Property.PaddingInline<number | (string & {})> | undefined;
1337
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1338
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1339
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1340
+ scrollMargin?: import("csstype").Property.ScrollMargin<number | (string & {})> | undefined;
1341
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<number | (string & {})> | undefined;
1342
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<number | (string & {})> | undefined;
1343
+ scrollPadding?: import("csstype").Property.ScrollPadding<number | (string & {})> | undefined;
1344
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<number | (string & {})> | undefined;
1345
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<number | (string & {})> | undefined;
1346
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<number | (string & {})> | undefined;
1347
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1348
+ textDecoration?: import("csstype").Property.TextDecoration<number | (string & {})> | undefined;
1349
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1350
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1351
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1352
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1353
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1354
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1355
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1356
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1357
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1358
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1359
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1360
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1361
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1362
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1363
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1364
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1365
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<number | (string & {})> | undefined;
1366
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1367
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1368
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1369
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1370
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1371
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1372
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1373
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1374
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1375
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1376
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
1377
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
1378
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1379
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1380
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1381
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1382
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1383
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
1384
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
1385
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1386
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
1387
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<number | (string & {})> | undefined;
1388
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<number | (string & {})> | undefined;
1389
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<number | (string & {})> | undefined;
1390
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<number | (string & {})> | undefined;
1391
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
1392
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
1393
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1394
+ MozTabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
1395
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1396
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1397
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1398
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1399
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1400
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1401
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1402
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1403
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1404
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1405
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1406
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1407
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1408
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1409
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1410
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1411
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1412
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1413
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1414
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1415
+ msGridColumns?: import("csstype").Property.MsGridColumns<number | (string & {})> | undefined;
1416
+ msGridRows?: import("csstype").Property.MsGridRows<number | (string & {})> | undefined;
1417
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1418
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1419
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1420
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<number | (string & {})> | undefined;
1421
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1422
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1423
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1424
+ msOrder?: import("csstype").Property.Order | undefined;
1425
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1426
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1427
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1428
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1429
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<number | (string & {})> | undefined;
1430
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<number | (string & {})> | undefined;
1431
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<number | (string & {})> | undefined;
1432
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<number | (string & {})> | undefined;
1433
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1434
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1435
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1436
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1437
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1438
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1439
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1440
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1441
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1442
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1443
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1444
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1445
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1446
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1447
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1448
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1449
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1450
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1451
+ msTransform?: import("csstype").Property.Transform | undefined;
1452
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
1453
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1454
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1455
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1456
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1457
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1458
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1459
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1460
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<number | (string & {})> | undefined;
1461
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1462
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1463
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1464
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1465
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1466
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1467
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1468
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1469
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1470
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1471
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1472
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1473
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1474
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1475
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1476
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1477
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1478
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1479
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
1480
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1481
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1482
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<number | (string & {})> | undefined;
1483
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
1484
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
1485
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1486
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
1487
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
1488
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1489
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<number | (string & {})> | undefined;
1490
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1491
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1492
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1493
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1494
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1495
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1496
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1497
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<number | (string & {})> | undefined;
1498
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1499
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<number | (string & {})> | undefined;
1500
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1501
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<number | (string & {})> | undefined;
1502
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1503
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1504
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1505
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1506
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1507
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1508
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<number | (string & {})> | undefined;
1509
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1510
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1511
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1512
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1513
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1514
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1515
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1516
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<number | (string & {})> | undefined;
1517
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<number | (string & {})> | undefined;
1518
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1519
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<number | (string & {})> | undefined;
1520
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1521
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1522
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1523
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<number | (string & {})> | undefined;
1524
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1525
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1526
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1527
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1528
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<number | (string & {})> | undefined;
1529
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<number | (string & {})> | undefined;
1530
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<number | (string & {})> | undefined;
1531
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1532
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1533
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1534
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<number | (string & {})> | undefined;
1535
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<number | (string & {})> | undefined;
1536
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1537
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1538
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<number | (string & {})> | undefined;
1539
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<number | (string & {})> | undefined;
1540
+ WebkitPerspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
1541
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
1542
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1543
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1544
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1545
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<number | (string & {})> | undefined;
1546
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1547
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1548
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1549
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1550
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1551
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1552
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1553
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1554
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1555
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1556
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1557
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1558
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1559
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<number | (string & {})> | undefined;
1560
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1561
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1562
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1563
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
1564
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1565
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1566
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1567
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1568
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1569
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1570
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1571
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1572
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1573
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1574
+ MozColumnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
1575
+ MozColumns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
1576
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<number | (string & {})> | undefined;
1577
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1578
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1579
+ msFlex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
1580
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1581
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1582
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1583
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1584
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1585
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<number | (string & {})> | undefined;
1586
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1587
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
1588
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<number | (string & {})> | undefined;
1589
+ WebkitColumns?: import("csstype").Property.Columns<number | (string & {})> | undefined;
1590
+ WebkitFlex?: import("csstype").Property.Flex<number | (string & {})> | undefined;
1591
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1592
+ WebkitMask?: import("csstype").Property.WebkitMask<number | (string & {})> | undefined;
1593
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1594
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1595
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<number | (string & {})> | undefined;
1596
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1597
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1598
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1599
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1600
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1601
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1602
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1603
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1604
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1605
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1606
+ clip?: import("csstype").Property.Clip | undefined;
1607
+ gridColumnGap?: import("csstype").Property.GridColumnGap<number | (string & {})> | undefined;
1608
+ gridGap?: import("csstype").Property.GridGap<number | (string & {})> | undefined;
1609
+ gridRowGap?: import("csstype").Property.GridRowGap<number | (string & {})> | undefined;
1610
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1611
+ offsetBlock?: import("csstype").Property.InsetBlock<number | (string & {})> | undefined;
1612
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<number | (string & {})> | undefined;
1613
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<number | (string & {})> | undefined;
1614
+ offsetInline?: import("csstype").Property.InsetInline<number | (string & {})> | undefined;
1615
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<number | (string & {})> | undefined;
1616
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<number | (string & {})> | undefined;
1617
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<number | (string & {})> | undefined;
1618
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<number | (string & {})> | undefined;
1619
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1620
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1621
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1622
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1623
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1624
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1625
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1626
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1627
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1628
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1629
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1630
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1631
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1632
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1633
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1634
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1635
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1636
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1637
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1638
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
1639
+ MozBorderRadius?: import("csstype").Property.BorderRadius<number | (string & {})> | undefined;
1640
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<number | (string & {})> | undefined;
1641
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<number | (string & {})> | undefined;
1642
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<number | (string & {})> | undefined;
1643
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<number | (string & {})> | undefined;
1644
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1645
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1646
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1647
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1648
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1649
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1650
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1651
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1652
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1653
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1654
+ MozOutline?: import("csstype").Property.Outline<number | (string & {})> | undefined;
1655
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1656
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1657
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<number | (string & {})> | undefined;
1658
+ MozPerspective?: import("csstype").Property.Perspective<number | (string & {})> | undefined;
1659
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<number | (string & {})> | undefined;
1660
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1661
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1662
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1663
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1664
+ MozTransform?: import("csstype").Property.Transform | undefined;
1665
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
1666
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1667
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1668
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1669
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1670
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1671
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1672
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1673
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1674
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1675
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1676
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1677
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1678
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1679
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1680
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1681
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1682
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1683
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<number | (string & {})> | undefined;
1684
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1685
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1686
+ OObjectPosition?: import("csstype").Property.ObjectPosition<number | (string & {})> | undefined;
1687
+ OTabSize?: import("csstype").Property.TabSize<number | (string & {})> | undefined;
1688
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1689
+ OTransform?: import("csstype").Property.Transform | undefined;
1690
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<number | (string & {})> | undefined;
1691
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1692
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1693
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1694
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1695
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1696
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1697
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1698
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1699
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1700
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1701
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1702
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1703
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1704
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1705
+ baselineShift?: import("csstype").Property.BaselineShift<number | (string & {})> | undefined;
1706
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1707
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1708
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1709
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1710
+ fill?: import("csstype").Property.Fill | undefined;
1711
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1712
+ fillRule?: import("csstype").Property.FillRule | undefined;
1713
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1714
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1715
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1716
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1717
+ marker?: import("csstype").Property.Marker | undefined;
1718
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1719
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1720
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1721
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1722
+ stopColor?: import("csstype").Property.StopColor | undefined;
1723
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1724
+ stroke?: import("csstype").Property.Stroke | undefined;
1725
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<number | (string & {})> | undefined;
1726
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<number | (string & {})> | undefined;
1727
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1728
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1729
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1730
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1731
+ strokeWidth?: import("csstype").Property.StrokeWidth<number | (string & {})> | undefined;
1732
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1733
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1734
+ };
1735
+ render(): React.JSX.Element | null;
1736
+ context: any;
1737
+ setState<K extends "visible">(state: {
1738
+ visible: boolean;
1739
+ } | ((prevState: Readonly<{
1740
+ visible: boolean;
1741
+ }>, props: Readonly<TagProps>) => {
1742
+ visible: boolean;
1743
+ } | Pick<{
1744
+ visible: boolean;
1745
+ }, K> | null) | Pick<{
1746
+ visible: boolean;
1747
+ }, K> | null, callback?: (() => void) | undefined): void;
1748
+ forceUpdate(callback?: (() => void) | undefined): void;
1749
+ readonly props: Readonly<TagProps> & Readonly<{
1750
+ children?: React.ReactNode;
1751
+ }>;
1752
+ state: Readonly<{
1753
+ visible: boolean;
1754
+ }>;
1755
+ refs: {
1756
+ [key: string]: React.ReactInstance;
1757
+ };
1758
+ componentDidMount?(): void;
1759
+ shouldComponentUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
1760
+ visible: boolean;
1761
+ }>, nextContext: any): boolean;
1762
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1763
+ getSnapshotBeforeUpdate?(prevProps: Readonly<TagProps>, prevState: Readonly<{
1764
+ visible: boolean;
1765
+ }>): any;
1766
+ componentDidUpdate?(prevProps: Readonly<TagProps>, prevState: Readonly<{
1767
+ visible: boolean;
1768
+ }>, snapshot?: any): void;
1769
+ componentWillMount?(): void;
1770
+ UNSAFE_componentWillMount?(): void;
1771
+ componentWillReceiveProps?(nextProps: Readonly<TagProps>, nextContext: any): void;
1772
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<TagProps>, nextContext: any): void;
1773
+ componentWillUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
1774
+ visible: boolean;
1775
+ }>, nextContext: any): void;
1776
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<TagProps>, nextState: Readonly<{
1777
+ visible: boolean;
1778
+ }>, nextContext: any): void;
1779
+ }>>, {}>;
21
1780
  export default _default;