@deadragdoll/reactnu 0.1.9

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