phosphor-ui 0.3.39

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