yuyeon 0.2.3-rc.8 → 0.2.3-rc.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/yuyeon.js +553 -550
  2. package/dist/yuyeon.umd.cjs +2 -2
  3. package/lib/components/layer/YLayer.mjs +1 -1
  4. package/lib/components/layer/YLayer.mjs.map +1 -1
  5. package/lib/components/select/YSelect.mjs.map +1 -1
  6. package/lib/components/tooltip/YTooltip.mjs +4 -4
  7. package/lib/components/tooltip/YTooltip.mjs.map +1 -1
  8. package/lib/composables/layer-group.mjs +10 -4
  9. package/lib/composables/layer-group.mjs.map +1 -1
  10. package/lib/util/component/component.mjs +4 -0
  11. package/lib/util/component/component.mjs.map +1 -1
  12. package/package.json +1 -1
  13. package/types/components/checkbox/YCheckbox.d.ts +1 -1
  14. package/types/components/date-picker/YDateCalendar.d.ts +5 -5
  15. package/types/components/dialog/YDialog.d.ts +4909 -7
  16. package/types/components/draggable/YDraggable.d.ts +8 -8
  17. package/types/components/field-input/YFieldInput.d.ts +2 -2
  18. package/types/components/layer/YLayer.d.ts +1599 -6
  19. package/types/components/layer/active-stack.d.ts +1 -1
  20. package/types/components/layer/base.d.ts +3 -3
  21. package/types/components/menu/YMenu.d.ts +4910 -8
  22. package/types/components/pagination/YPagination.d.ts +3 -3
  23. package/types/components/panel/YDividePanel.d.ts +2 -2
  24. package/types/components/progress-bar/YProgressBar.d.ts +1 -1
  25. package/types/components/snackbar/YSnackbar.d.ts +2 -2
  26. package/types/components/tab/YTabs.d.ts +1 -1
  27. package/types/components/table/composibles/header.d.ts +38 -2
  28. package/types/components/table/composibles/measure.d.ts +6 -6
  29. package/types/components/table/composibles/pagination.d.ts +8 -8
  30. package/types/components/table/composibles/sorting.d.ts +3 -3
  31. package/types/components/textarea/YTextarea.d.ts +92 -5
  32. package/types/components/transitions/expand-transition.d.ts +5 -5
  33. package/types/components/transitions/index.d.ts +10 -10
  34. package/types/components/tree-view/YTreeView.d.ts +13 -13
  35. package/types/components/tree-view/YTreeViewNode.d.ts +4 -4
  36. package/types/composables/communication.d.ts +2 -2
  37. package/types/composables/coordinate/index.d.ts +1595 -2
  38. package/types/composables/defaults/index.d.ts +3 -3
  39. package/types/composables/focus.d.ts +1 -1
  40. package/types/composables/form.d.ts +17 -2
  41. package/types/composables/layer-group.d.ts +4 -2
  42. package/types/composables/progress.d.ts +1 -1
  43. package/types/composables/ref.d.ts +1 -1
  44. package/types/composables/resize-observer.d.ts +11 -1
  45. package/types/composables/theme/index.d.ts +7 -7
  46. package/types/composables/timing.d.ts +3 -3
  47. package/types/composables/validation.d.ts +3 -3
  48. package/types/mixins/di.d.ts +1 -1
  49. package/types/mixins/rebind-attrs.d.ts +1 -1
@@ -398,15 +398,15 @@ export declare const YLayer: import('vue').DefineComponent<{
398
398
  include?: (() => (HTMLElement | undefined)[]) | undefined;
399
399
  };
400
400
  layerGroup: import('vue').ComputedRef<HTMLElement>;
401
- active: import('vue').WritableComputedRef<boolean>;
402
- finish: import('vue').ShallowRef<boolean>;
401
+ active: import('vue').WritableComputedRef<boolean, boolean>;
402
+ finish: import('vue').ShallowRef<boolean, boolean>;
403
403
  rendered: import('vue').ComputedRef<boolean>;
404
404
  lazyValue: import('vue').ComputedRef<any>;
405
405
  onAfterUpdate: () => void;
406
- scrim$: import('vue').Ref<HTMLElement | undefined>;
407
- content$: import('vue').Ref<HTMLElement | undefined>;
408
- base$: import('vue').Ref<any>;
409
- baseEl: import('vue').Ref<HTMLElement | undefined>;
406
+ scrim$: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
407
+ content$: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
408
+ base$: import('vue').Ref<any, any>;
409
+ baseEl: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
410
410
  baseFromSlotEl: import('vue').ComputedRef<any>;
411
411
  polyTransitionBindProps: import('vue').ComputedRef<{
412
412
  is: any;
@@ -2005,6 +2005,1599 @@ export declare const YLayer: import('vue').DefineComponent<{
2005
2005
  "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2006
2006
  "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
2007
2007
  "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
2008
+ }, CSSProperties | {
2009
+ [x: `--${string}`]: string | number | undefined;
2010
+ accentColor?: import("csstype").Property.AccentColor | undefined;
2011
+ alignContent?: import("csstype").Property.AlignContent | undefined;
2012
+ alignItems?: import("csstype").Property.AlignItems | undefined;
2013
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
2014
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
2015
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
2016
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2017
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
2018
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2019
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2020
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2021
+ animationName?: import("csstype").Property.AnimationName | undefined;
2022
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2023
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2024
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2025
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
2026
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2027
+ appearance?: import("csstype").Property.Appearance | undefined;
2028
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
2029
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2030
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2031
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
2032
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
2033
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2034
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
2035
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
2036
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2037
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2038
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2039
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
2040
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2041
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
2042
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
2043
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
2044
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
2045
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
2046
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2047
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
2048
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
2049
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2050
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
2051
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2052
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
2053
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2054
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2055
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
2056
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2057
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
2058
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2059
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2060
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2061
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
2062
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2063
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
2064
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2065
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
2066
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2067
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2068
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2069
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2070
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2071
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2072
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
2073
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2074
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
2075
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
2076
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2077
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
2078
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
2079
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2080
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2081
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2082
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2083
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
2084
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2085
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2086
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
2087
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2088
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
2089
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2090
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
2091
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
2092
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
2093
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
2094
+ breakInside?: import("csstype").Property.BreakInside | undefined;
2095
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
2096
+ caretColor?: import("csstype").Property.CaretColor | undefined;
2097
+ caretShape?: import("csstype").Property.CaretShape | undefined;
2098
+ clear?: import("csstype").Property.Clear | undefined;
2099
+ clipPath?: import("csstype").Property.ClipPath | undefined;
2100
+ color?: import("csstype").Property.Color | undefined;
2101
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2102
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
2103
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
2104
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
2105
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
2106
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2107
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2108
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2109
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
2110
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2111
+ contain?: import("csstype").Property.Contain | undefined;
2112
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2113
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2114
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2115
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2116
+ containerName?: import("csstype").Property.ContainerName | undefined;
2117
+ containerType?: import("csstype").Property.ContainerType | undefined;
2118
+ content?: import("csstype").Property.Content | undefined;
2119
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
2120
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
2121
+ counterReset?: import("csstype").Property.CounterReset | undefined;
2122
+ counterSet?: import("csstype").Property.CounterSet | undefined;
2123
+ cursor?: import("csstype").Property.Cursor | undefined;
2124
+ direction?: import("csstype").Property.Direction | undefined;
2125
+ display?: import("csstype").Property.Display | undefined;
2126
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
2127
+ filter?: import("csstype").Property.Filter | undefined;
2128
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2129
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
2130
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
2131
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
2132
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
2133
+ float?: import("csstype").Property.Float | undefined;
2134
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
2135
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2136
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
2137
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2138
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
2139
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
2140
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
2141
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
2142
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
2143
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
2144
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
2145
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
2146
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
2147
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2148
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
2149
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
2150
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
2151
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
2152
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
2153
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
2154
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
2155
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2156
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
2157
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
2158
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
2159
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
2160
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
2161
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2162
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
2163
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2164
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
2165
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
2166
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
2167
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
2168
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
2169
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2170
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2171
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
2172
+ height?: import("csstype").Property.Height<string | number> | undefined;
2173
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2174
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
2175
+ hyphens?: import("csstype").Property.Hyphens | undefined;
2176
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
2177
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
2178
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
2179
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
2180
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
2181
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
2182
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2183
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2184
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2185
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2186
+ isolation?: import("csstype").Property.Isolation | undefined;
2187
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
2188
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
2189
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
2190
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
2191
+ left?: import("csstype").Property.Left<string | number> | undefined;
2192
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
2193
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
2194
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
2195
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
2196
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
2197
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
2198
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
2199
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
2200
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
2201
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
2202
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2203
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2204
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
2205
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
2206
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
2207
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
2208
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
2209
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2210
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2211
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2212
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
2213
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2214
+ maskClip?: import("csstype").Property.MaskClip | undefined;
2215
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
2216
+ maskImage?: import("csstype").Property.MaskImage | undefined;
2217
+ maskMode?: import("csstype").Property.MaskMode | undefined;
2218
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
2219
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
2220
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
2221
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
2222
+ maskType?: import("csstype").Property.MaskType | undefined;
2223
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
2224
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
2225
+ mathShift?: import("csstype").Property.MathShift | undefined;
2226
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
2227
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
2228
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
2229
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2230
+ maxLines?: import("csstype").Property.MaxLines | undefined;
2231
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
2232
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
2233
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
2234
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
2235
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
2236
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
2237
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2238
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
2239
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
2240
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
2241
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2242
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
2243
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
2244
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
2245
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
2246
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
2247
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
2248
+ opacity?: import("csstype").Property.Opacity | undefined;
2249
+ order?: import("csstype").Property.Order | undefined;
2250
+ orphans?: import("csstype").Property.Orphans | undefined;
2251
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
2252
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
2253
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2254
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2255
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
2256
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
2257
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
2258
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
2259
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
2260
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
2261
+ overflowX?: import("csstype").Property.OverflowX | undefined;
2262
+ overflowY?: import("csstype").Property.OverflowY | undefined;
2263
+ overlay?: import("csstype").Property.Overlay | undefined;
2264
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
2265
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
2266
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
2267
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
2268
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
2269
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
2270
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
2271
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2272
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2273
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
2274
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
2275
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
2276
+ page?: import("csstype").Property.Page | undefined;
2277
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
2278
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
2279
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
2280
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
2281
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
2282
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2283
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
2284
+ position?: import("csstype").Property.Position | undefined;
2285
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2286
+ quotes?: import("csstype").Property.Quotes | undefined;
2287
+ resize?: import("csstype").Property.Resize | undefined;
2288
+ right?: import("csstype").Property.Right<string | number> | undefined;
2289
+ rotate?: import("csstype").Property.Rotate | undefined;
2290
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
2291
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
2292
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
2293
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
2294
+ scale?: import("csstype").Property.Scale | undefined;
2295
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
2296
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
2297
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
2298
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2299
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
2300
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
2301
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2302
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2303
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2304
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
2305
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
2306
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
2307
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
2308
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
2309
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
2310
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
2311
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
2312
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
2313
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
2314
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
2315
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
2316
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
2317
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
2318
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2319
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
2320
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
2321
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
2322
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
2323
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
2324
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
2325
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2326
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
2327
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2328
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
2329
+ textAlign?: import("csstype").Property.TextAlign | undefined;
2330
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2331
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
2332
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2333
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2334
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2335
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
2336
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2337
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
2338
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2339
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2340
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2341
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
2342
+ textJustify?: import("csstype").Property.TextJustify | undefined;
2343
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
2344
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
2345
+ textRendering?: import("csstype").Property.TextRendering | undefined;
2346
+ textShadow?: import("csstype").Property.TextShadow | undefined;
2347
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2348
+ textTransform?: import("csstype").Property.TextTransform | undefined;
2349
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
2350
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2351
+ textWrap?: import("csstype").Property.TextWrap | undefined;
2352
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
2353
+ top?: import("csstype").Property.Top<string | number> | undefined;
2354
+ touchAction?: import("csstype").Property.TouchAction | undefined;
2355
+ transform?: import("csstype").Property.Transform | undefined;
2356
+ transformBox?: import("csstype").Property.TransformBox | undefined;
2357
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2358
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
2359
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
2360
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2361
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2362
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2363
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2364
+ translate?: import("csstype").Property.Translate<string | number> | undefined;
2365
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
2366
+ userSelect?: import("csstype").Property.UserSelect | undefined;
2367
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
2368
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
2369
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
2370
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
2371
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
2372
+ visibility?: import("csstype").Property.Visibility | undefined;
2373
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
2374
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
2375
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
2376
+ widows?: import("csstype").Property.Widows | undefined;
2377
+ width?: import("csstype").Property.Width<string | number> | undefined;
2378
+ willChange?: import("csstype").Property.WillChange | undefined;
2379
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
2380
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
2381
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
2382
+ writingMode?: import("csstype").Property.WritingMode | undefined;
2383
+ zIndex?: import("csstype").Property.ZIndex | undefined;
2384
+ zoom?: import("csstype").Property.Zoom | undefined;
2385
+ all?: import('csstype').Globals | undefined;
2386
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
2387
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
2388
+ background?: import("csstype").Property.Background<string | number> | undefined;
2389
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
2390
+ border?: import("csstype").Property.Border<string | number> | undefined;
2391
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
2392
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
2393
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
2394
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
2395
+ borderColor?: import("csstype").Property.BorderColor | undefined;
2396
+ borderImage?: import("csstype").Property.BorderImage | undefined;
2397
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
2398
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
2399
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
2400
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
2401
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2402
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
2403
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
2404
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
2405
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
2406
+ caret?: import("csstype").Property.Caret | undefined;
2407
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2408
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
2409
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
2410
+ container?: import("csstype").Property.Container | undefined;
2411
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
2412
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
2413
+ font?: import("csstype").Property.Font | undefined;
2414
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
2415
+ grid?: import("csstype").Property.Grid | undefined;
2416
+ gridArea?: import("csstype").Property.GridArea | undefined;
2417
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
2418
+ gridRow?: import("csstype").Property.GridRow | undefined;
2419
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
2420
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
2421
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2422
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2423
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
2424
+ listStyle?: import("csstype").Property.ListStyle | undefined;
2425
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
2426
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
2427
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
2428
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
2429
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
2430
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
2431
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
2432
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
2433
+ overflow?: import("csstype").Property.Overflow | undefined;
2434
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
2435
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
2436
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
2437
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
2438
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
2439
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
2440
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
2441
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2442
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
2443
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
2444
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
2445
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
2446
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
2447
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
2448
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
2449
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
2450
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2451
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
2452
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
2453
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2454
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2455
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2456
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2457
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2458
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
2459
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2460
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2461
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
2462
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
2463
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
2464
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
2465
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
2466
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2467
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
2468
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
2469
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
2470
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
2471
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
2472
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2473
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
2474
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
2475
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2476
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2477
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2478
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2479
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
2480
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2481
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
2482
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
2483
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
2484
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2485
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2486
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
2487
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2488
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
2489
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
2490
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
2491
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
2492
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2493
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2494
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
2495
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2496
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
2497
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2498
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
2499
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
2500
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
2501
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
2502
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
2503
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
2504
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
2505
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
2506
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
2507
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
2508
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
2509
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
2510
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
2511
+ msFilter?: import("csstype").Property.MsFilter | undefined;
2512
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2513
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
2514
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
2515
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
2516
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
2517
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
2518
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
2519
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
2520
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
2521
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
2522
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
2523
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
2524
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
2525
+ msOrder?: import("csstype").Property.Order | undefined;
2526
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
2527
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
2528
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
2529
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
2530
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
2531
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
2532
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
2533
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
2534
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
2535
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
2536
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
2537
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
2538
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
2539
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
2540
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
2541
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
2542
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
2543
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
2544
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
2545
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
2546
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
2547
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
2548
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
2549
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2550
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
2551
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
2552
+ msTransform?: import("csstype").Property.Transform | undefined;
2553
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2554
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2555
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2556
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2557
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2558
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
2559
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
2560
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
2561
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
2562
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
2563
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
2564
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
2565
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
2566
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
2567
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2568
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2569
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2570
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2571
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2572
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
2573
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2574
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2575
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
2576
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
2577
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2578
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2579
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2580
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2581
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
2582
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
2583
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
2584
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2585
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2586
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
2587
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2588
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2589
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
2590
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
2591
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2592
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
2593
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
2594
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
2595
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
2596
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
2597
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
2598
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2599
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
2600
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2601
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
2602
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
2603
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
2604
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
2605
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
2606
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
2607
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
2608
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
2609
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
2610
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
2611
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
2612
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
2613
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
2614
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
2615
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
2616
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
2617
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
2618
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
2619
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
2620
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
2621
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
2622
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
2623
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
2624
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
2625
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
2626
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
2627
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
2628
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
2629
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
2630
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
2631
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
2632
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
2633
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
2634
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
2635
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
2636
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
2637
+ WebkitOrder?: import("csstype").Property.Order | undefined;
2638
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
2639
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
2640
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
2641
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2642
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2643
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
2644
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
2645
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
2646
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
2647
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
2648
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
2649
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2650
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2651
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
2652
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2653
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
2654
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
2655
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
2656
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
2657
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
2658
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
2659
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
2660
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
2661
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
2662
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
2663
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
2664
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2665
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2666
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2667
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2668
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2669
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2670
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
2671
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
2672
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
2673
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2674
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
2675
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2676
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
2677
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
2678
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
2679
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
2680
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
2681
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
2682
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
2683
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
2684
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2685
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2686
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
2687
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
2688
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2689
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
2690
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
2691
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
2692
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
2693
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
2694
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
2695
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
2696
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
2697
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2698
+ azimuth?: import("csstype").Property.Azimuth | undefined;
2699
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
2700
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
2701
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
2702
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2703
+ boxLines?: import("csstype").Property.BoxLines | undefined;
2704
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2705
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
2706
+ boxPack?: import("csstype").Property.BoxPack | undefined;
2707
+ clip?: import("csstype").Property.Clip | undefined;
2708
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
2709
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
2710
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
2711
+ imeMode?: import("csstype").Property.ImeMode | undefined;
2712
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
2713
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2714
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2715
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
2716
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2717
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2718
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
2719
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
2720
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
2721
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
2722
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
2723
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
2724
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2725
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2726
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2727
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2728
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
2729
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2730
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2731
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
2732
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
2733
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
2734
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
2735
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
2736
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
2737
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
2738
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
2739
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2740
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
2741
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2742
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2743
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2744
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2745
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2746
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2747
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2748
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2749
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2750
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
2751
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
2752
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
2753
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
2754
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
2755
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
2756
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
2757
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
2758
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
2759
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
2760
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
2761
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
2762
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
2763
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
2764
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
2765
+ MozTransform?: import("csstype").Property.Transform | undefined;
2766
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2767
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
2768
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2769
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2770
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2771
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2772
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2773
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
2774
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
2775
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
2776
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2777
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
2778
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2779
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
2780
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
2781
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
2782
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
2783
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
2784
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2785
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
2786
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
2787
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
2788
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
2789
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
2790
+ OTransform?: import("csstype").Property.Transform | undefined;
2791
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
2792
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
2793
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
2794
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
2795
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
2796
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
2797
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
2798
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
2799
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
2800
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
2801
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
2802
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
2803
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
2804
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
2805
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
2806
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
2807
+ clipRule?: import("csstype").Property.ClipRule | undefined;
2808
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
2809
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
2810
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
2811
+ fill?: import("csstype").Property.Fill | undefined;
2812
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
2813
+ fillRule?: import("csstype").Property.FillRule | undefined;
2814
+ floodColor?: import("csstype").Property.FloodColor | undefined;
2815
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
2816
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
2817
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
2818
+ marker?: import("csstype").Property.Marker | undefined;
2819
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
2820
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
2821
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
2822
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
2823
+ stopColor?: import("csstype").Property.StopColor | undefined;
2824
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
2825
+ stroke?: import("csstype").Property.Stroke | undefined;
2826
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
2827
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
2828
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
2829
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
2830
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
2831
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
2832
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
2833
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
2834
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
2835
+ "accent-color"?: import("csstype").Property.AccentColor | undefined;
2836
+ "align-content"?: import("csstype").Property.AlignContent | undefined;
2837
+ "align-items"?: import("csstype").Property.AlignItems | undefined;
2838
+ "align-self"?: import("csstype").Property.AlignSelf | undefined;
2839
+ "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
2840
+ "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
2841
+ "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
2842
+ "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
2843
+ "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
2844
+ "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
2845
+ "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
2846
+ "animation-name"?: import("csstype").Property.AnimationName | undefined;
2847
+ "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
2848
+ "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
2849
+ "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
2850
+ "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
2851
+ "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
2852
+ "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
2853
+ "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
2854
+ "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
2855
+ "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
2856
+ "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
2857
+ "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
2858
+ "background-color"?: import("csstype").Property.BackgroundColor | undefined;
2859
+ "background-image"?: import("csstype").Property.BackgroundImage | undefined;
2860
+ "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
2861
+ "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
2862
+ "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
2863
+ "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
2864
+ "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
2865
+ "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
2866
+ "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
2867
+ "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
2868
+ "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
2869
+ "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
2870
+ "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
2871
+ "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
2872
+ "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
2873
+ "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
2874
+ "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
2875
+ "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
2876
+ "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
2877
+ "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
2878
+ "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
2879
+ "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
2880
+ "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
2881
+ "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
2882
+ "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
2883
+ "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
2884
+ "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
2885
+ "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
2886
+ "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
2887
+ "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
2888
+ "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
2889
+ "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
2890
+ "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
2891
+ "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
2892
+ "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
2893
+ "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
2894
+ "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
2895
+ "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
2896
+ "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
2897
+ "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
2898
+ "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
2899
+ "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
2900
+ "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
2901
+ "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
2902
+ "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
2903
+ "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
2904
+ "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
2905
+ "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
2906
+ "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
2907
+ "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
2908
+ "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
2909
+ "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
2910
+ "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
2911
+ "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
2912
+ "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
2913
+ "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
2914
+ "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
2915
+ "break-after"?: import("csstype").Property.BreakAfter | undefined;
2916
+ "break-before"?: import("csstype").Property.BreakBefore | undefined;
2917
+ "break-inside"?: import("csstype").Property.BreakInside | undefined;
2918
+ "caption-side"?: import("csstype").Property.CaptionSide | undefined;
2919
+ "caret-color"?: import("csstype").Property.CaretColor | undefined;
2920
+ "caret-shape"?: import("csstype").Property.CaretShape | undefined;
2921
+ "clip-path"?: import("csstype").Property.ClipPath | undefined;
2922
+ "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
2923
+ "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
2924
+ "column-count"?: import("csstype").Property.ColumnCount | undefined;
2925
+ "column-fill"?: import("csstype").Property.ColumnFill | undefined;
2926
+ "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
2927
+ "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
2928
+ "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
2929
+ "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
2930
+ "column-span"?: import("csstype").Property.ColumnSpan | undefined;
2931
+ "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
2932
+ "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
2933
+ "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
2934
+ "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
2935
+ "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
2936
+ "container-name"?: import("csstype").Property.ContainerName | undefined;
2937
+ "container-type"?: import("csstype").Property.ContainerType | undefined;
2938
+ "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
2939
+ "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
2940
+ "counter-reset"?: import("csstype").Property.CounterReset | undefined;
2941
+ "counter-set"?: import("csstype").Property.CounterSet | undefined;
2942
+ "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
2943
+ "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
2944
+ "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
2945
+ "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
2946
+ "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
2947
+ "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
2948
+ "font-family"?: import("csstype").Property.FontFamily | undefined;
2949
+ "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
2950
+ "font-kerning"?: import("csstype").Property.FontKerning | undefined;
2951
+ "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
2952
+ "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
2953
+ "font-palette"?: import("csstype").Property.FontPalette | undefined;
2954
+ "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
2955
+ "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
2956
+ "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
2957
+ "font-stretch"?: import("csstype").Property.FontStretch | undefined;
2958
+ "font-style"?: import("csstype").Property.FontStyle | undefined;
2959
+ "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
2960
+ "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
2961
+ "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
2962
+ "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
2963
+ "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
2964
+ "font-variant"?: import("csstype").Property.FontVariant | undefined;
2965
+ "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
2966
+ "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
2967
+ "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
2968
+ "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
2969
+ "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
2970
+ "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
2971
+ "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
2972
+ "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
2973
+ "font-weight"?: import("csstype").Property.FontWeight | undefined;
2974
+ "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
2975
+ "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
2976
+ "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
2977
+ "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
2978
+ "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
2979
+ "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
2980
+ "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
2981
+ "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
2982
+ "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
2983
+ "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
2984
+ "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
2985
+ "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
2986
+ "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
2987
+ "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
2988
+ "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
2989
+ "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
2990
+ "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
2991
+ "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
2992
+ "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
2993
+ "input-security"?: import("csstype").Property.InputSecurity | undefined;
2994
+ "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
2995
+ "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
2996
+ "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
2997
+ "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
2998
+ "justify-content"?: import("csstype").Property.JustifyContent | undefined;
2999
+ "justify-items"?: import("csstype").Property.JustifyItems | undefined;
3000
+ "justify-self"?: import("csstype").Property.JustifySelf | undefined;
3001
+ "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
3002
+ "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
3003
+ "line-break"?: import("csstype").Property.LineBreak | undefined;
3004
+ "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
3005
+ "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
3006
+ "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
3007
+ "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
3008
+ "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
3009
+ "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
3010
+ "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
3011
+ "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
3012
+ "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3013
+ "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3014
+ "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
3015
+ "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
3016
+ "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
3017
+ "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
3018
+ "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
3019
+ "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3020
+ "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3021
+ "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3022
+ "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
3023
+ "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3024
+ "mask-clip"?: import("csstype").Property.MaskClip | undefined;
3025
+ "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
3026
+ "mask-image"?: import("csstype").Property.MaskImage | undefined;
3027
+ "mask-mode"?: import("csstype").Property.MaskMode | undefined;
3028
+ "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
3029
+ "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
3030
+ "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
3031
+ "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
3032
+ "mask-type"?: import("csstype").Property.MaskType | undefined;
3033
+ "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
3034
+ "math-depth"?: import("csstype").Property.MathDepth | undefined;
3035
+ "math-shift"?: import("csstype").Property.MathShift | undefined;
3036
+ "math-style"?: import("csstype").Property.MathStyle | undefined;
3037
+ "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
3038
+ "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
3039
+ "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3040
+ "max-lines"?: import("csstype").Property.MaxLines | undefined;
3041
+ "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
3042
+ "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
3043
+ "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
3044
+ "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
3045
+ "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
3046
+ "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
3047
+ "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3048
+ "motion-path"?: import("csstype").Property.OffsetPath | undefined;
3049
+ "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
3050
+ "object-fit"?: import("csstype").Property.ObjectFit | undefined;
3051
+ "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3052
+ "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
3053
+ "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
3054
+ "offset-path"?: import("csstype").Property.OffsetPath | undefined;
3055
+ "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
3056
+ "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
3057
+ "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
3058
+ "outline-color"?: import("csstype").Property.OutlineColor | undefined;
3059
+ "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
3060
+ "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3061
+ "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3062
+ "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
3063
+ "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
3064
+ "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
3065
+ "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
3066
+ "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
3067
+ "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
3068
+ "overflow-x"?: import("csstype").Property.OverflowX | undefined;
3069
+ "overflow-y"?: import("csstype").Property.OverflowY | undefined;
3070
+ "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
3071
+ "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
3072
+ "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
3073
+ "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
3074
+ "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
3075
+ "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
3076
+ "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
3077
+ "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3078
+ "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3079
+ "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
3080
+ "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
3081
+ "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
3082
+ "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
3083
+ "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
3084
+ "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
3085
+ "paint-order"?: import("csstype").Property.PaintOrder | undefined;
3086
+ "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3087
+ "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
3088
+ "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3089
+ "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
3090
+ "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
3091
+ "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
3092
+ "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3093
+ "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
3094
+ "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
3095
+ "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
3096
+ "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3097
+ "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
3098
+ "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
3099
+ "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3100
+ "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3101
+ "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3102
+ "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
3103
+ "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
3104
+ "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
3105
+ "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
3106
+ "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
3107
+ "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
3108
+ "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
3109
+ "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
3110
+ "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
3111
+ "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
3112
+ "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
3113
+ "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
3114
+ "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
3115
+ "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
3116
+ "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3117
+ "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
3118
+ "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
3119
+ "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
3120
+ "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
3121
+ "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
3122
+ "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
3123
+ "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3124
+ "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
3125
+ "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3126
+ "table-layout"?: import("csstype").Property.TableLayout | undefined;
3127
+ "text-align"?: import("csstype").Property.TextAlign | undefined;
3128
+ "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3129
+ "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
3130
+ "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3131
+ "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3132
+ "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3133
+ "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
3134
+ "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3135
+ "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
3136
+ "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3137
+ "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3138
+ "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3139
+ "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
3140
+ "text-justify"?: import("csstype").Property.TextJustify | undefined;
3141
+ "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3142
+ "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3143
+ "text-rendering"?: import("csstype").Property.TextRendering | undefined;
3144
+ "text-shadow"?: import("csstype").Property.TextShadow | undefined;
3145
+ "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3146
+ "text-transform"?: import("csstype").Property.TextTransform | undefined;
3147
+ "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
3148
+ "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3149
+ "text-wrap"?: import("csstype").Property.TextWrap | undefined;
3150
+ "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
3151
+ "touch-action"?: import("csstype").Property.TouchAction | undefined;
3152
+ "transform-box"?: import("csstype").Property.TransformBox | undefined;
3153
+ "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3154
+ "transform-style"?: import("csstype").Property.TransformStyle | undefined;
3155
+ "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
3156
+ "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3157
+ "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3158
+ "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3159
+ "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3160
+ "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
3161
+ "user-select"?: import("csstype").Property.UserSelect | undefined;
3162
+ "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
3163
+ "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
3164
+ "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
3165
+ "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
3166
+ "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
3167
+ "white-space"?: import("csstype").Property.WhiteSpace | undefined;
3168
+ "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
3169
+ "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
3170
+ "will-change"?: import("csstype").Property.WillChange | undefined;
3171
+ "word-break"?: import("csstype").Property.WordBreak | undefined;
3172
+ "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
3173
+ "word-wrap"?: import("csstype").Property.WordWrap | undefined;
3174
+ "writing-mode"?: import("csstype").Property.WritingMode | undefined;
3175
+ "z-index"?: import("csstype").Property.ZIndex | undefined;
3176
+ "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
3177
+ "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
3178
+ "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
3179
+ "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
3180
+ "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
3181
+ "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
3182
+ "border-color"?: import("csstype").Property.BorderColor | undefined;
3183
+ "border-image"?: import("csstype").Property.BorderImage | undefined;
3184
+ "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
3185
+ "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
3186
+ "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
3187
+ "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
3188
+ "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3189
+ "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
3190
+ "border-style"?: import("csstype").Property.BorderStyle | undefined;
3191
+ "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
3192
+ "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
3193
+ "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3194
+ "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
3195
+ "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3196
+ "grid-area"?: import("csstype").Property.GridArea | undefined;
3197
+ "grid-column"?: import("csstype").Property.GridColumn | undefined;
3198
+ "grid-row"?: import("csstype").Property.GridRow | undefined;
3199
+ "grid-template"?: import("csstype").Property.GridTemplate | undefined;
3200
+ "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
3201
+ "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
3202
+ "line-clamp"?: import("csstype").Property.LineClamp | undefined;
3203
+ "list-style"?: import("csstype").Property.ListStyle | undefined;
3204
+ "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
3205
+ "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
3206
+ "mask-border"?: import("csstype").Property.MaskBorder | undefined;
3207
+ "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
3208
+ "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
3209
+ "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
3210
+ "place-content"?: import("csstype").Property.PlaceContent | undefined;
3211
+ "place-items"?: import("csstype").Property.PlaceItems | undefined;
3212
+ "place-self"?: import("csstype").Property.PlaceSelf | undefined;
3213
+ "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3214
+ "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
3215
+ "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
3216
+ "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
3217
+ "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
3218
+ "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
3219
+ "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
3220
+ "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
3221
+ "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
3222
+ "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
3223
+ "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
3224
+ "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3225
+ "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3226
+ "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3227
+ "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3228
+ "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3229
+ "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
3230
+ "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3231
+ "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3232
+ "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
3233
+ "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
3234
+ "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
3235
+ "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
3236
+ "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
3237
+ "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
3238
+ "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
3239
+ "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
3240
+ "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
3241
+ "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
3242
+ "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
3243
+ "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3244
+ "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
3245
+ "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
3246
+ "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3247
+ "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3248
+ "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3249
+ "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3250
+ "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
3251
+ "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3252
+ "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
3253
+ "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
3254
+ "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
3255
+ "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3256
+ "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3257
+ "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
3258
+ "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
3259
+ "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
3260
+ "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
3261
+ "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
3262
+ "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
3263
+ "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3264
+ "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3265
+ "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
3266
+ "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3267
+ "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
3268
+ "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3269
+ "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
3270
+ "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
3271
+ "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
3272
+ "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
3273
+ "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
3274
+ "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
3275
+ "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
3276
+ "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
3277
+ "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
3278
+ "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
3279
+ "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
3280
+ "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
3281
+ "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
3282
+ "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
3283
+ "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3284
+ "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
3285
+ "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
3286
+ "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
3287
+ "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
3288
+ "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
3289
+ "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
3290
+ "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
3291
+ "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
3292
+ "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
3293
+ "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
3294
+ "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
3295
+ "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
3296
+ "-ms-order"?: import("csstype").Property.Order | undefined;
3297
+ "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
3298
+ "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
3299
+ "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
3300
+ "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
3301
+ "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
3302
+ "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
3303
+ "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
3304
+ "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
3305
+ "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
3306
+ "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
3307
+ "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
3308
+ "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
3309
+ "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
3310
+ "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
3311
+ "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
3312
+ "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
3313
+ "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
3314
+ "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
3315
+ "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
3316
+ "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
3317
+ "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
3318
+ "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
3319
+ "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
3320
+ "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3321
+ "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
3322
+ "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
3323
+ "-ms-transform"?: import("csstype").Property.Transform | undefined;
3324
+ "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3325
+ "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3326
+ "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3327
+ "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3328
+ "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3329
+ "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
3330
+ "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
3331
+ "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
3332
+ "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
3333
+ "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
3334
+ "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3335
+ "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
3336
+ "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
3337
+ "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
3338
+ "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3339
+ "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3340
+ "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3341
+ "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3342
+ "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3343
+ "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
3344
+ "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3345
+ "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3346
+ "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
3347
+ "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
3348
+ "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3349
+ "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3350
+ "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3351
+ "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3352
+ "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
3353
+ "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
3354
+ "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
3355
+ "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3356
+ "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3357
+ "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
3358
+ "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3359
+ "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3360
+ "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
3361
+ "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
3362
+ "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3363
+ "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
3364
+ "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
3365
+ "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
3366
+ "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
3367
+ "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
3368
+ "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
3369
+ "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
3370
+ "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
3371
+ "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
3372
+ "-webkit-filter"?: import("csstype").Property.Filter | undefined;
3373
+ "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
3374
+ "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
3375
+ "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
3376
+ "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
3377
+ "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
3378
+ "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
3379
+ "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
3380
+ "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
3381
+ "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
3382
+ "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
3383
+ "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
3384
+ "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
3385
+ "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
3386
+ "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
3387
+ "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
3388
+ "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
3389
+ "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
3390
+ "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
3391
+ "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
3392
+ "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
3393
+ "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
3394
+ "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
3395
+ "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
3396
+ "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
3397
+ "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
3398
+ "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
3399
+ "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
3400
+ "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
3401
+ "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
3402
+ "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
3403
+ "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
3404
+ "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
3405
+ "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
3406
+ "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
3407
+ "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
3408
+ "-webkit-order"?: import("csstype").Property.Order | undefined;
3409
+ "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
3410
+ "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
3411
+ "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
3412
+ "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3413
+ "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3414
+ "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
3415
+ "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
3416
+ "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
3417
+ "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
3418
+ "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
3419
+ "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
3420
+ "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3421
+ "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3422
+ "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
3423
+ "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3424
+ "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
3425
+ "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
3426
+ "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
3427
+ "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
3428
+ "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
3429
+ "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
3430
+ "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
3431
+ "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
3432
+ "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
3433
+ "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
3434
+ "-webkit-transform"?: import("csstype").Property.Transform | undefined;
3435
+ "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3436
+ "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3437
+ "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3438
+ "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3439
+ "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3440
+ "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3441
+ "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
3442
+ "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
3443
+ "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
3444
+ "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3445
+ "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
3446
+ "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3447
+ "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3448
+ "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
3449
+ "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
3450
+ "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
3451
+ "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3452
+ "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
3453
+ "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
3454
+ "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
3455
+ "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3456
+ "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3457
+ "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
3458
+ "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
3459
+ "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3460
+ "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
3461
+ "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
3462
+ "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
3463
+ "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
3464
+ "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
3465
+ "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
3466
+ "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
3467
+ "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
3468
+ "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3469
+ "box-align"?: import("csstype").Property.BoxAlign | undefined;
3470
+ "box-direction"?: import("csstype").Property.BoxDirection | undefined;
3471
+ "box-flex"?: import("csstype").Property.BoxFlex | undefined;
3472
+ "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3473
+ "box-lines"?: import("csstype").Property.BoxLines | undefined;
3474
+ "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3475
+ "box-orient"?: import("csstype").Property.BoxOrient | undefined;
3476
+ "box-pack"?: import("csstype").Property.BoxPack | undefined;
3477
+ "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
3478
+ "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
3479
+ "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
3480
+ "ime-mode"?: import("csstype").Property.ImeMode | undefined;
3481
+ "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
3482
+ "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
3483
+ "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
3484
+ "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
3485
+ "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
3486
+ "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
3487
+ "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
3488
+ "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
3489
+ "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
3490
+ "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
3491
+ "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
3492
+ "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
3493
+ "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
3494
+ "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3495
+ "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3496
+ "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3497
+ "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
3498
+ "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3499
+ "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3500
+ "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
3501
+ "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
3502
+ "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
3503
+ "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
3504
+ "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
3505
+ "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
3506
+ "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
3507
+ "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
3508
+ "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3509
+ "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
3510
+ "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
3511
+ "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
3512
+ "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
3513
+ "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
3514
+ "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
3515
+ "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3516
+ "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3517
+ "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3518
+ "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3519
+ "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
3520
+ "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
3521
+ "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
3522
+ "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
3523
+ "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
3524
+ "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
3525
+ "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
3526
+ "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
3527
+ "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
3528
+ "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
3529
+ "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
3530
+ "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
3531
+ "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
3532
+ "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
3533
+ "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
3534
+ "-moz-transform"?: import("csstype").Property.Transform | undefined;
3535
+ "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3536
+ "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
3537
+ "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3538
+ "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3539
+ "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3540
+ "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3541
+ "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3542
+ "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
3543
+ "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
3544
+ "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
3545
+ "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
3546
+ "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
3547
+ "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
3548
+ "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
3549
+ "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
3550
+ "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
3551
+ "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
3552
+ "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
3553
+ "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
3554
+ "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
3555
+ "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
3556
+ "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
3557
+ "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
3558
+ "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
3559
+ "-o-transform"?: import("csstype").Property.Transform | undefined;
3560
+ "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
3561
+ "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
3562
+ "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
3563
+ "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
3564
+ "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
3565
+ "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
3566
+ "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
3567
+ "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
3568
+ "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
3569
+ "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
3570
+ "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
3571
+ "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
3572
+ "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
3573
+ "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
3574
+ "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
3575
+ "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
3576
+ "clip-rule"?: import("csstype").Property.ClipRule | undefined;
3577
+ "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
3578
+ "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
3579
+ "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
3580
+ "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
3581
+ "fill-rule"?: import("csstype").Property.FillRule | undefined;
3582
+ "flood-color"?: import("csstype").Property.FloodColor | undefined;
3583
+ "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
3584
+ "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
3585
+ "lighting-color"?: import("csstype").Property.LightingColor | undefined;
3586
+ "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
3587
+ "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
3588
+ "marker-start"?: import("csstype").Property.MarkerStart | undefined;
3589
+ "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
3590
+ "stop-color"?: import("csstype").Property.StopColor | undefined;
3591
+ "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
3592
+ "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
3593
+ "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
3594
+ "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
3595
+ "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
3596
+ "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
3597
+ "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
3598
+ "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
3599
+ "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
3600
+ "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
2008
3601
  }>;
2009
3602
  layerGroupState: WeakMap<HTMLElement, Set<any>>;
2010
3603
  getActiveLayers: () => ComponentInternalInstance[];