yuyeon 0.2.3-rc.1 → 0.2.3-rc.10

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 (83) hide show
  1. package/dist/yuyeon.js +3203 -3120
  2. package/dist/yuyeon.umd.cjs +3 -3
  3. package/lib/components/field-input/YFieldInput.mjs +3 -2
  4. package/lib/components/field-input/YFieldInput.mjs.map +1 -1
  5. package/lib/components/index.mjs +1 -0
  6. package/lib/components/index.mjs.map +1 -1
  7. package/lib/components/input/YInput.mjs +6 -2
  8. package/lib/components/input/YInput.mjs.map +1 -1
  9. package/lib/components/layer/YLayer.mjs +21 -17
  10. package/lib/components/layer/YLayer.mjs.map +1 -1
  11. package/lib/components/layer/base.mjs +2 -1
  12. package/lib/components/layer/base.mjs.map +1 -1
  13. package/lib/components/select/YSelect.mjs +32 -14
  14. package/lib/components/select/YSelect.mjs.map +1 -1
  15. package/lib/components/table/YDataTableBody.mjs +39 -14
  16. package/lib/components/table/YDataTableBody.mjs.map +1 -1
  17. package/lib/components/table/YDataTableControl.mjs.map +1 -1
  18. package/lib/components/table/YDataTableRow.mjs +29 -7
  19. package/lib/components/table/YDataTableRow.mjs.map +1 -1
  20. package/lib/components/table/YDataTableServer.mjs +3 -1
  21. package/lib/components/table/YDataTableServer.mjs.map +1 -1
  22. package/lib/components/table/composibles/pagination.mjs +6 -4
  23. package/lib/components/table/composibles/pagination.mjs.map +1 -1
  24. package/lib/components/tooltip/YTooltip.mjs +4 -4
  25. package/lib/components/tooltip/YTooltip.mjs.map +1 -1
  26. package/lib/composables/layer-group.mjs +4 -4
  27. package/lib/composables/layer-group.mjs.map +1 -1
  28. package/lib/directives/plate-wave/index.mjs +4 -1
  29. package/lib/directives/plate-wave/index.mjs.map +1 -1
  30. package/lib/i18n/built-in.mjs +2 -2
  31. package/lib/i18n/built-in.mjs.map +1 -1
  32. package/lib/index.mjs.map +1 -1
  33. package/lib/util/component/component.mjs +4 -0
  34. package/lib/util/component/component.mjs.map +1 -1
  35. package/package.json +120 -117
  36. package/types/components/checkbox/YCheckbox.d.ts +1 -1
  37. package/types/components/date-picker/YDateCalendar.d.ts +5 -5
  38. package/types/components/dialog/YDialog.d.ts +4937 -28
  39. package/types/components/draggable/YDraggable.d.ts +8 -8
  40. package/types/components/dropdown/YDropdown.d.ts +17 -11
  41. package/types/components/field-input/YFieldInput.d.ts +3 -3
  42. package/types/components/index.d.ts +1 -0
  43. package/types/components/input/YInput.d.ts +1 -1
  44. package/types/components/layer/YLayer.d.ts +1610 -11
  45. package/types/components/layer/active-stack.d.ts +1 -1
  46. package/types/components/layer/base.d.ts +9 -3
  47. package/types/components/menu/YMenu.d.ts +4916 -11
  48. package/types/components/pagination/YPagination.d.ts +3 -3
  49. package/types/components/panel/YDividePanel.d.ts +2 -2
  50. package/types/components/progress-bar/YProgressBar.d.ts +1 -1
  51. package/types/components/select/YSelect.d.ts +133 -101
  52. package/types/components/snackbar/YSnackbar.d.ts +11 -5
  53. package/types/components/tab/YTabs.d.ts +1 -1
  54. package/types/components/table/YDataTable.d.ts +12 -0
  55. package/types/components/table/YDataTableBody.d.ts +13 -1
  56. package/types/components/table/YDataTableRow.d.ts +24 -12
  57. package/types/components/table/YDataTableServer.d.ts +12 -0
  58. package/types/components/table/composibles/header.d.ts +38 -2
  59. package/types/components/table/composibles/measure.d.ts +6 -6
  60. package/types/components/table/composibles/pagination.d.ts +8 -8
  61. package/types/components/table/composibles/sorting.d.ts +3 -3
  62. package/types/components/textarea/YTextarea.d.ts +95 -5
  63. package/types/components/tooltip/YTooltip.d.ts +10 -6
  64. package/types/components/transitions/expand-transition.d.ts +5 -5
  65. package/types/components/transitions/index.d.ts +10 -10
  66. package/types/components/tree-view/YTreeView.d.ts +13 -13
  67. package/types/components/tree-view/YTreeViewNode.d.ts +4 -4
  68. package/types/composables/communication.d.ts +2 -2
  69. package/types/composables/coordinate/index.d.ts +1599 -6
  70. package/types/composables/defaults/index.d.ts +3 -3
  71. package/types/composables/focus.d.ts +1 -1
  72. package/types/composables/form.d.ts +17 -2
  73. package/types/composables/layer-group.d.ts +4 -2
  74. package/types/composables/progress.d.ts +1 -1
  75. package/types/composables/ref.d.ts +1 -1
  76. package/types/composables/resize-observer.d.ts +11 -1
  77. package/types/composables/theme/index.d.ts +7 -7
  78. package/types/composables/timing.d.ts +3 -3
  79. package/types/composables/validation.d.ts +3 -3
  80. package/types/mixins/di.d.ts +1 -1
  81. package/types/mixins/rebind-attrs.d.ts +1 -1
  82. package/types/shims.d.ts +2 -1
  83. package/types/util/anchor.d.ts +1 -1
@@ -24,14 +24,14 @@ export declare const pressCoordinateProps: <Defaults extends {
24
24
  default: unknown extends Defaults["coordinateStrategy"] ? "levitation" | "arrangement" | CoordinateStrategyFn : NonNullable<"levitation" | "arrangement" | CoordinateStrategyFn> | Defaults["coordinateStrategy"];
25
25
  };
26
26
  position: unknown extends Defaults["position"] ? {
27
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
27
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
28
28
  default: string;
29
29
  } : Omit<{
30
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
30
+ type: PropType<"default" | "left" | "right" | "top" | "bottom" | "start" | "end">;
31
31
  default: string;
32
32
  }, "type" | "default"> & {
33
- type: PropType<unknown extends Defaults["position"] ? "default" | "top" | "bottom" | "start" | "end" | "left" | "right" : NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> | Defaults["position"]>;
34
- default: unknown extends Defaults["position"] ? "default" | "top" | "bottom" | "start" | "end" | "left" | "right" : NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> | Defaults["position"];
33
+ type: PropType<unknown extends Defaults["position"] ? "default" | "left" | "right" | "top" | "bottom" | "start" | "end" : NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end"> | Defaults["position"]>;
34
+ default: unknown extends Defaults["position"] ? "default" | "left" | "right" | "top" | "bottom" | "start" | "end" : NonNullable<"default" | "left" | "right" | "top" | "bottom" | "start" | "end"> | Defaults["position"];
35
35
  };
36
36
  align: unknown extends Defaults["align"] ? {
37
37
  type: PropType<"top" | "bottom" | "start" | "end" | "center">;
@@ -73,7 +73,7 @@ export declare const pressCoordinateProps: <Defaults extends {
73
73
  };
74
74
  };
75
75
  export declare function useCoordinate(props: any, state: CoordinateState): {
76
- coordinate: Ref<Rect | undefined>;
76
+ coordinate: Ref<Rect | undefined, Rect | undefined>;
77
77
  coordinateStyles: Ref<{
78
78
  [x: `--${string}`]: string | number | undefined;
79
79
  accentColor?: import("csstype").Property.AccentColor | undefined;
@@ -1667,6 +1667,1599 @@ export declare function useCoordinate(props: any, state: CoordinateState): {
1667
1667
  "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1668
1668
  "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
1669
1669
  "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1670
+ }, CSSProperties | {
1671
+ [x: `--${string}`]: string | number | undefined;
1672
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1673
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1674
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1675
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1676
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1677
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1678
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1679
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1680
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1681
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1682
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1683
+ animationName?: import("csstype").Property.AnimationName | undefined;
1684
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1685
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1686
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1687
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1688
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1689
+ appearance?: import("csstype").Property.Appearance | undefined;
1690
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1691
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1692
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1693
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1694
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1695
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1696
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1697
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1698
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1699
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1700
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1701
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1702
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1703
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1704
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
1705
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1706
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1707
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1708
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1709
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1710
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1711
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1712
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1713
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1714
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1715
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1716
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1717
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1718
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1719
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1720
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1721
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1722
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1723
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1724
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1725
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1726
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1727
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1728
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1729
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1730
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1731
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1732
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1733
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1734
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1735
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1736
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1737
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1738
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1739
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1740
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1741
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1742
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1743
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1744
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1745
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1746
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1747
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1748
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1749
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1750
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
1751
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1752
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1753
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1754
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1755
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1756
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1757
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1758
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1759
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1760
+ clear?: import("csstype").Property.Clear | undefined;
1761
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1762
+ color?: import("csstype").Property.Color | undefined;
1763
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1764
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1765
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1766
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1767
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
1768
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1769
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1770
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1771
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1772
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1773
+ contain?: import("csstype").Property.Contain | undefined;
1774
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1775
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1776
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1777
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1778
+ containerName?: import("csstype").Property.ContainerName | undefined;
1779
+ containerType?: import("csstype").Property.ContainerType | undefined;
1780
+ content?: import("csstype").Property.Content | undefined;
1781
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1782
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1783
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1784
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1785
+ cursor?: import("csstype").Property.Cursor | undefined;
1786
+ direction?: import("csstype").Property.Direction | undefined;
1787
+ display?: import("csstype").Property.Display | undefined;
1788
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1789
+ filter?: import("csstype").Property.Filter | undefined;
1790
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
1791
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1792
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1793
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1794
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1795
+ float?: import("csstype").Property.Float | undefined;
1796
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1797
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1798
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1799
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1800
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1801
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1802
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
1803
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1804
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
1805
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1806
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1807
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1808
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1809
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1810
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1811
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1812
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1813
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1814
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1815
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1816
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1817
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1818
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1819
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1820
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1821
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1822
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1823
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1824
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1825
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1826
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1827
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1828
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1829
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1830
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1831
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1832
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1833
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1834
+ height?: import("csstype").Property.Height<string | number> | undefined;
1835
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1836
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1837
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1838
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1839
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1840
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1841
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1842
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
1843
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1844
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1845
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1846
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1847
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1848
+ isolation?: import("csstype").Property.Isolation | undefined;
1849
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1850
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1851
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1852
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1853
+ left?: import("csstype").Property.Left<string | number> | undefined;
1854
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1855
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1856
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
1857
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1858
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1859
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1860
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1861
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1862
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1863
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
1864
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1865
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1866
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
1867
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
1868
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
1869
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1870
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1871
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1872
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1873
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1874
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1875
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1876
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1877
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1878
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1879
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1880
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1881
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
1882
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1883
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
1884
+ maskType?: import("csstype").Property.MaskType | undefined;
1885
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1886
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1887
+ mathShift?: import("csstype").Property.MathShift | undefined;
1888
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1889
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1890
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
1891
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1892
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1893
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
1894
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1895
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
1896
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1897
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
1898
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1899
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1900
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1901
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1902
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1903
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1904
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1905
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1906
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1907
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1908
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1909
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1910
+ opacity?: import("csstype").Property.Opacity | undefined;
1911
+ order?: import("csstype").Property.Order | undefined;
1912
+ orphans?: import("csstype").Property.Orphans | undefined;
1913
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1914
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1915
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1916
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1917
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1918
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1919
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1920
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1921
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1922
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1923
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1924
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1925
+ overlay?: import("csstype").Property.Overlay | undefined;
1926
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1927
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1928
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1929
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1930
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1931
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1932
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1933
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1934
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1935
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1936
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
1937
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
1938
+ page?: import("csstype").Property.Page | undefined;
1939
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1940
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1941
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1942
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1943
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
1944
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1945
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1946
+ position?: import("csstype").Property.Position | undefined;
1947
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1948
+ quotes?: import("csstype").Property.Quotes | undefined;
1949
+ resize?: import("csstype").Property.Resize | undefined;
1950
+ right?: import("csstype").Property.Right<string | number> | undefined;
1951
+ rotate?: import("csstype").Property.Rotate | undefined;
1952
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
1953
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1954
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1955
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1956
+ scale?: import("csstype").Property.Scale | undefined;
1957
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1958
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1959
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1960
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1961
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1962
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1963
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1964
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1965
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1966
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1967
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1968
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1969
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1970
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1971
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1972
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1973
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1974
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1975
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1976
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1977
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1978
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1979
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1980
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1981
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1982
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1983
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1984
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1985
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1986
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1987
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1988
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1989
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1990
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1991
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1992
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1993
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1994
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1995
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1996
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1997
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1998
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1999
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2000
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2001
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2002
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2003
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2004
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2005
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2006
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2007
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2008
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2009
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2010
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2011
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2012
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2013
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2014
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2015
+ top?: import("csstype").Property.Top<string | number> | undefined;
2016
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2017
+ transform?: import("csstype").Property.Transform | undefined;
2018
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2019
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2020
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2021
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2022
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2023
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2024
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2025
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2026
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2027
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2028
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2029
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2030
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2031
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2032
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2033
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2034
+ visibility?: import("csstype").Property.Visibility | undefined;
2035
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2036
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2037
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2038
+ widows?: import("csstype").Property.Widows | undefined;
2039
+ width?: import("csstype").Property.Width<string | number> | undefined;
2040
+ willChange?: import("csstype").Property.WillChange | undefined;
2041
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2042
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2043
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2044
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2045
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2046
+ zoom?: import("csstype").Property.Zoom | undefined;
2047
+ all?: import('csstype').Globals | undefined;
2048
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2049
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2050
+ background?: import("csstype").Property.Background<string | number> | undefined;
2051
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2052
+ border?: import("csstype").Property.Border<string | number> | undefined;
2053
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2054
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2055
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2056
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2057
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2058
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2059
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2060
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2061
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2062
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2063
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2064
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2065
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2066
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2067
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2068
+ caret?: import("csstype").Property.Caret | undefined;
2069
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2070
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2071
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2072
+ container?: import("csstype").Property.Container | undefined;
2073
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2074
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2075
+ font?: import("csstype").Property.Font | undefined;
2076
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2077
+ grid?: import("csstype").Property.Grid | undefined;
2078
+ gridArea?: import("csstype").Property.GridArea | undefined;
2079
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2080
+ gridRow?: import("csstype").Property.GridRow | undefined;
2081
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2082
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2083
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2084
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2085
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2086
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2087
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2088
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2089
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2090
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2091
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2092
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2093
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2094
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2095
+ overflow?: import("csstype").Property.Overflow | undefined;
2096
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2097
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2098
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2099
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2100
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2101
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2102
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2103
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2104
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2105
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2106
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2107
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2108
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2109
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2110
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2111
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2112
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2113
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2114
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2115
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2116
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2117
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2118
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2119
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2120
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2121
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2122
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2123
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2124
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2125
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2126
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2127
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2128
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2129
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2130
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2131
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2132
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2133
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2134
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2135
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2136
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2137
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2138
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2139
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2140
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2141
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2142
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2143
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2144
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2145
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2146
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2147
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2148
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2149
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2150
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2151
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2152
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2153
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2154
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2155
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2156
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2157
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2158
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2159
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2160
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2161
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2162
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2163
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2164
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2165
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2166
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2167
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2168
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2169
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2170
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2171
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2172
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2173
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2174
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2175
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2176
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2177
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2178
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2179
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2180
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2181
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2182
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2183
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2184
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2185
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2186
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2187
+ msOrder?: import("csstype").Property.Order | undefined;
2188
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2189
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2190
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2191
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2192
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2193
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2194
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2195
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2196
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2197
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2198
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2199
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2200
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2201
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2202
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2203
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2204
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2205
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2206
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2207
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2208
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2209
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2210
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2211
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2212
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2213
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2214
+ msTransform?: import("csstype").Property.Transform | undefined;
2215
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2216
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2217
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2218
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2219
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2220
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2221
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2222
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2223
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2224
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2225
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2226
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2227
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2228
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2229
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2230
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2231
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2232
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2233
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2234
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2235
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2236
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2237
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2238
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2239
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2240
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2241
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2242
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2243
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2244
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2245
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2246
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2247
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2248
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2249
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2250
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2251
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2252
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2253
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2254
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2255
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2256
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2257
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2258
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2259
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2260
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2261
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2262
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2263
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2264
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2265
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2266
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2267
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2268
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2269
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2270
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2271
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2272
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2273
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2274
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2275
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2276
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2277
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2278
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2279
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2280
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2281
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2282
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2283
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2284
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2285
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2286
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2287
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2288
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2289
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2290
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2291
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2292
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2293
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2294
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2295
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2296
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2297
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2298
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2299
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2300
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2301
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2302
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2303
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2304
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2305
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2306
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2307
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2308
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2309
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2310
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2311
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2312
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2313
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2314
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2315
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2316
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2317
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2318
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2319
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2320
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2321
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2322
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2323
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2324
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2325
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2326
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2327
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2328
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2329
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2330
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2331
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2332
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2333
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2334
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2335
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2336
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2337
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2338
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2339
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2340
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2341
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2342
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2343
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2344
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2345
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2346
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2347
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2348
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2349
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2350
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2351
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2352
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2353
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2354
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2355
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2356
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2357
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2358
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2359
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2360
+ azimuth?: import("csstype").Property.Azimuth | undefined;
2361
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2362
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2363
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2364
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2365
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2366
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2367
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2368
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2369
+ clip?: import("csstype").Property.Clip | undefined;
2370
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2371
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2372
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2373
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2374
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2375
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2376
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2377
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2378
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2379
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2380
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2381
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2382
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2383
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2384
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2385
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2386
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2387
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2388
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2389
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2390
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2391
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2392
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2393
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2394
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2395
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2396
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2397
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2398
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2399
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2400
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2401
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2402
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2403
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2404
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2405
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2406
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2407
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2408
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2409
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2410
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2411
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2412
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2413
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2414
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2415
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2416
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2417
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2418
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2419
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2420
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2421
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2422
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2423
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2424
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2425
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2426
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2427
+ MozTransform?: import("csstype").Property.Transform | undefined;
2428
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2429
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2430
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2431
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2432
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2433
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2434
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2435
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2436
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2437
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2438
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2439
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2440
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2441
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2442
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2443
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2444
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2445
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2446
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2447
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2448
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2449
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2450
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2451
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2452
+ OTransform?: import("csstype").Property.Transform | undefined;
2453
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2454
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2455
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2456
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2457
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2458
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2459
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2460
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2461
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2462
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2463
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2464
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2465
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2466
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2467
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2468
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2469
+ clipRule?: import("csstype").Property.ClipRule | undefined;
2470
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2471
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2472
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2473
+ fill?: import("csstype").Property.Fill | undefined;
2474
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2475
+ fillRule?: import("csstype").Property.FillRule | undefined;
2476
+ floodColor?: import("csstype").Property.FloodColor | undefined;
2477
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2478
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2479
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
2480
+ marker?: import("csstype").Property.Marker | undefined;
2481
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2482
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2483
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2484
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2485
+ stopColor?: import("csstype").Property.StopColor | undefined;
2486
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2487
+ stroke?: import("csstype").Property.Stroke | undefined;
2488
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2489
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2490
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2491
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2492
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2493
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2494
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2495
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2496
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2497
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
2498
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
2499
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
2500
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
2501
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
2502
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
2503
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2504
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2505
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2506
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2507
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2508
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
2509
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2510
+ "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2511
+ "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2512
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
2513
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2514
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
2515
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
2516
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2517
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
2518
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
2519
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2520
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
2521
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
2522
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2523
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2524
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2525
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
2526
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2527
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
2528
+ "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
2529
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
2530
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
2531
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
2532
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2533
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
2534
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
2535
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2536
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
2537
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2538
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
2539
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2540
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2541
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
2542
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2543
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
2544
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2545
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2546
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2547
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
2548
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
2549
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
2550
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2551
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
2552
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2553
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2554
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2555
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2556
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2557
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2558
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
2559
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2560
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
2561
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
2562
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2563
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
2564
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
2565
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2566
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2567
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2568
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2569
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
2570
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2571
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2572
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
2573
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2574
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
2575
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2576
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2577
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
2578
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
2579
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
2580
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
2581
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
2582
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
2583
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
2584
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2585
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
2586
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
2587
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
2588
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
2589
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2590
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2591
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2592
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
2593
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2594
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2595
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2596
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2597
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2598
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
2599
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
2600
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
2601
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
2602
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
2603
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
2604
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
2605
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
2606
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2607
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
2608
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
2609
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
2610
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
2611
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2612
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
2613
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2614
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
2615
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
2616
+ "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
2617
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
2618
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2619
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
2620
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
2621
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
2622
+ "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
2623
+ "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2624
+ "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
2625
+ "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
2626
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
2627
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
2628
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
2629
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
2630
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
2631
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
2632
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
2633
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
2634
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
2635
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
2636
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
2637
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2638
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
2639
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2640
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
2641
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
2642
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
2643
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
2644
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
2645
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2646
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2647
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
2648
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
2649
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
2650
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
2651
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
2652
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
2653
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
2654
+ "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
2655
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
2656
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2657
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2658
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2659
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2660
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
2661
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
2662
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
2663
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
2664
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2665
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
2666
+ "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
2667
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2668
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
2669
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
2670
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
2671
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2672
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2673
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
2674
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2675
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2676
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
2677
+ "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
2678
+ "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
2679
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
2680
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
2681
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2682
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
2683
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
2684
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
2685
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2686
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
2687
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
2688
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
2689
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
2690
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
2691
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
2692
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
2693
+ "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
2694
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
2695
+ "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
2696
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
2697
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
2698
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
2699
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2700
+ "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
2701
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2702
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
2703
+ "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
2704
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2705
+ "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
2706
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2707
+ "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
2708
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
2709
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2710
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
2711
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2712
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
2713
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2714
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2715
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2716
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
2717
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2718
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
2719
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
2720
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
2721
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2722
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
2723
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2724
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
2725
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
2726
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
2727
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2728
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
2729
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
2730
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
2731
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
2732
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2733
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2734
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
2735
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
2736
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2737
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2738
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2739
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2740
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2741
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2742
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
2743
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
2744
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
2745
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
2746
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
2747
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
2748
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2749
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
2750
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2751
+ "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
2752
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
2753
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
2754
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
2755
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
2756
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2757
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2758
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2759
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2760
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2761
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2762
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2763
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2764
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2765
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2766
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2767
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2768
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2769
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2770
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2771
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2772
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
2773
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2774
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2775
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2776
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2777
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
2778
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
2779
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
2780
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
2781
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
2782
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
2783
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
2784
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
2785
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2786
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
2787
+ "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2788
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
2789
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
2790
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
2791
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
2792
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
2793
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
2794
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
2795
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
2796
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
2797
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2798
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
2799
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
2800
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
2801
+ "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
2802
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
2803
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
2804
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2805
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
2806
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
2807
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2808
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
2809
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2810
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
2811
+ "text-wrap"?: import("csstype").Property.TextWrap | undefined;
2812
+ "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
2813
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
2814
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
2815
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2816
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
2817
+ "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
2818
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2819
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2820
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2821
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2822
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
2823
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
2824
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2825
+ "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
2826
+ "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2827
+ "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
2828
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
2829
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
2830
+ "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2831
+ "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
2832
+ "will-change"?: import("csstype").Property.WillChange | undefined;
2833
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
2834
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
2835
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
2836
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
2837
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
2838
+ "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
2839
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2840
+ "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
2841
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2842
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2843
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
2844
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
2845
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
2846
+ "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
2847
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2848
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2849
+ "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
2850
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
2851
+ "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
2852
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
2853
+ "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
2854
+ "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
2855
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
2856
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2857
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
2858
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
2859
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
2860
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
2861
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
2862
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
2863
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
2864
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
2865
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
2866
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
2867
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
2868
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
2869
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
2870
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2871
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
2872
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
2873
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
2874
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
2875
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2876
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2877
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2878
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2879
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2880
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2881
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2882
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
2883
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
2884
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
2885
+ "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
2886
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2887
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2888
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2889
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2890
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2891
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
2892
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2893
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2894
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
2895
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
2896
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
2897
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2898
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2899
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2900
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
2901
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
2902
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2903
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2904
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
2905
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2906
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
2907
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
2908
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2909
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2910
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2911
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2912
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
2913
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2914
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2915
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
2916
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
2917
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2918
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2919
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
2920
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2921
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2922
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2923
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2924
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2925
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2926
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2927
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
2928
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
2929
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
2930
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
2931
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
2932
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
2933
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
2934
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
2935
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
2936
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
2937
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
2938
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
2939
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2940
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2941
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2942
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
2943
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
2944
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
2945
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2946
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
2947
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
2948
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
2949
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2950
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
2951
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
2952
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2953
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2954
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2955
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
2956
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
2957
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
2958
+ "-ms-order"?: import("csstype").Property.Order | undefined;
2959
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
2960
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
2961
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
2962
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
2963
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2964
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2965
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2966
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2967
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
2968
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2969
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2970
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
2971
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
2972
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2973
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2974
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2975
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2976
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2977
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2978
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2979
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2980
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
2981
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
2982
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
2983
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
2984
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
2985
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
2986
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2987
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2988
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2989
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
2990
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
2991
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
2992
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
2993
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
2994
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2995
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
2996
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
2997
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
2998
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
2999
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
3000
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3001
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3002
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3003
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3004
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3005
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
3006
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3007
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3008
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
3009
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
3010
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3011
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3012
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3013
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3014
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3015
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3016
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3017
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3018
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3019
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
3020
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3021
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3022
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
3023
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3024
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3025
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3026
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
3027
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
3028
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
3029
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3030
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3031
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3032
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
3033
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3034
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
3035
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
3036
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3037
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
3038
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
3039
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
3040
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3041
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
3042
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
3043
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
3044
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
3045
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
3046
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
3047
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
3048
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
3049
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
3050
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3051
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3052
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
3053
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3054
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3055
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3056
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
3057
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3058
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
3059
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
3060
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
3061
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
3062
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3063
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3064
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3065
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
3066
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3067
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3068
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3069
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3070
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
3071
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3072
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3073
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3074
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3075
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3076
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3077
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3078
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3079
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3080
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3081
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
3082
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3083
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3084
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3085
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3086
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3087
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3088
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3089
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
3090
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3091
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3092
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3093
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3094
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3095
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
3096
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
3097
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3098
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3099
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3100
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3101
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3102
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3103
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
3104
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
3105
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3106
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3107
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
3108
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3109
+ "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3110
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3111
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
3112
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
3113
+ "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3114
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
3115
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
3116
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
3117
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3118
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3119
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3120
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
3121
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3122
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3123
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3124
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3125
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3126
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
3127
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
3128
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
3129
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3130
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3131
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
3132
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
3133
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
3134
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3135
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
3136
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3137
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
3138
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
3139
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3140
+ "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
3141
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
3142
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
3143
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
3144
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3145
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3146
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
3147
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3148
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3149
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3150
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3151
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
3152
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
3153
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
3154
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
3155
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
3156
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3157
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3158
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3159
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
3160
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3161
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3162
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
3163
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
3164
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
3165
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
3166
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3167
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3168
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
3169
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3170
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3171
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3172
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3173
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3174
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3175
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3176
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
3177
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3178
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3179
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3180
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3181
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
3182
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3183
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
3184
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3185
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
3186
+ "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
3187
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
3188
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3189
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3190
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3191
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3192
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3193
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3194
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3195
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3196
+ "-moz-transform"?: import("csstype").Property.Transform | undefined;
3197
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3198
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3199
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3200
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3201
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3202
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3203
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3204
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
3205
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
3206
+ "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3207
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3208
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3209
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3210
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3211
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3212
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
3213
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3214
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3215
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3216
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
3217
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
3218
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3219
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3220
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3221
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
3222
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3223
+ "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3224
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3225
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3226
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3227
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3228
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
3229
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3230
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3231
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3232
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
3233
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3234
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3235
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
3236
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
3237
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
3238
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
3239
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
3240
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
3241
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
3242
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
3243
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
3244
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
3245
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
3246
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
3247
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
3248
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
3249
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
3250
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
3251
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
3252
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
3253
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
3254
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3255
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3256
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
3257
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
3258
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
3259
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
3260
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3261
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
3262
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1670
3263
  }>;
1671
- updateCoordinate: Ref<((e: Event) => void) | undefined>;
3264
+ updateCoordinate: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>;
1672
3265
  };