@handlewithcare/react-prosemirror 2.0.0

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