@webflow/webflow-cli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/.eslintrc.js +5 -0
  2. package/.turbo/turbo-build.log +13 -0
  3. package/.turbo/turbo-lint.log +5 -0
  4. package/CHANGELOG.md +7 -0
  5. package/dist/devlink-engine/_Builtin/BackgroundVideo.d.ts +25 -0
  6. package/dist/devlink-engine/_Builtin/BackgroundVideo.js +38 -0
  7. package/dist/devlink-engine/_Builtin/Basic.d.ts +740 -0
  8. package/dist/devlink-engine/_Builtin/Basic.js +100 -0
  9. package/dist/devlink-engine/_Builtin/Dropdown.d.ts +38 -0
  10. package/dist/devlink-engine/_Builtin/Dropdown.js +47 -0
  11. package/dist/devlink-engine/_Builtin/Facebook.d.ts +11 -0
  12. package/dist/devlink-engine/_Builtin/Facebook.js +22 -0
  13. package/dist/devlink-engine/_Builtin/Form.d.ts +8401 -0
  14. package/dist/devlink-engine/_Builtin/Form.js +316 -0
  15. package/dist/devlink-engine/_Builtin/Map.d.ts +14 -0
  16. package/dist/devlink-engine/_Builtin/Map.js +71 -0
  17. package/dist/devlink-engine/_Builtin/Navbar.d.ts +53 -0
  18. package/dist/devlink-engine/_Builtin/Navbar.js +240 -0
  19. package/dist/devlink-engine/_Builtin/Slider.d.ts +876 -0
  20. package/dist/devlink-engine/_Builtin/Slider.js +304 -0
  21. package/dist/devlink-engine/_Builtin/Tabs.d.ts +34 -0
  22. package/dist/devlink-engine/_Builtin/Tabs.js +84 -0
  23. package/dist/devlink-engine/_Builtin/Twitter.d.ts +17 -0
  24. package/dist/devlink-engine/_Builtin/Twitter.js +41 -0
  25. package/dist/devlink-engine/_Builtin/Typography.d.ts +291 -0
  26. package/dist/devlink-engine/_Builtin/Typography.js +38 -0
  27. package/dist/devlink-engine/_Builtin/Video.d.ts +8 -0
  28. package/dist/devlink-engine/_Builtin/Video.js +8 -0
  29. package/dist/devlink-engine/_Builtin/YouTubeVideo.d.ts +15 -0
  30. package/dist/devlink-engine/_Builtin/YouTubeVideo.js +27 -0
  31. package/dist/devlink-engine/_Builtin/index.d.ts +13 -0
  32. package/dist/devlink-engine/_Builtin/index.js +13 -0
  33. package/dist/devlink-engine/interactions.d.ts +13 -0
  34. package/dist/devlink-engine/interactions.js +86 -0
  35. package/dist/devlink-engine/types.d.ts +32 -0
  36. package/dist/devlink-engine/types.js +1 -0
  37. package/dist/devlink-engine/utils.d.ts +66 -0
  38. package/dist/devlink-engine/utils.js +133 -0
  39. package/dist/index.js +197591 -0
  40. package/package.json +30 -0
  41. package/src/index.ts +33 -0
  42. package/tsconfig.json +5 -0
  43. package/tsup.config.ts +6 -0
@@ -0,0 +1,876 @@
1
+ import * as React from "react";
2
+ import { EASING_FUNCTIONS } from "../utils";
3
+ type SliderConfig = {
4
+ navSpacing: number;
5
+ navShadow: boolean;
6
+ autoplay: boolean;
7
+ delay: number;
8
+ iconArrows: boolean;
9
+ animation: "slide" | "cross" | "outin" | "fade" | "over";
10
+ navNumbers: boolean;
11
+ easing: keyof typeof EASING_FUNCTIONS;
12
+ navRound: boolean;
13
+ hideArrows: boolean;
14
+ disableSwipe: boolean;
15
+ duration: number;
16
+ infinite: boolean;
17
+ autoMax: number;
18
+ navInvert: boolean;
19
+ };
20
+ type SlideState = {
21
+ current: number;
22
+ previous: number;
23
+ };
24
+ export declare const SliderContext: React.Context<SliderConfig & {
25
+ slideAmount: number;
26
+ setSlideAmount: React.Dispatch<React.SetStateAction<number>>;
27
+ slide: SlideState;
28
+ setCurrentSlide: (current: number) => void;
29
+ goToNextSlide: () => void;
30
+ goToPreviousSlide: () => void;
31
+ isAutoplayPaused: boolean;
32
+ setAutoplayPause: React.Dispatch<React.SetStateAction<boolean>>;
33
+ }>;
34
+ type SliderChildrenType = SliderSlideProps | SliderArrowProps | SliderNavProps | SliderMaskProps;
35
+ type SliderWrapperProps = SliderConfig & {
36
+ className?: string;
37
+ children?: React.ReactElement<SliderChildrenType>[] | React.ReactElement<SliderChildrenType>;
38
+ };
39
+ export declare function SliderWrapper({ className, ...props }: SliderWrapperProps): JSX.Element;
40
+ type SliderMaskProps = React.PropsWithChildren<{
41
+ className?: string;
42
+ }>;
43
+ export declare function SliderMask({ className, children, ...props }: SliderMaskProps): JSX.Element;
44
+ type SliderSlideProps = React.PropsWithChildren<{
45
+ style?: React.CSSProperties;
46
+ tag?: string;
47
+ className?: string;
48
+ index: number;
49
+ }>;
50
+ export declare function SliderSlide({ tag, className, style, index, ...props }: SliderSlideProps): React.DOMElement<{
51
+ className: string;
52
+ style: {
53
+ accentColor?: import("csstype").Property.AccentColor | undefined;
54
+ alignContent?: import("csstype").Property.AlignContent | undefined;
55
+ alignItems?: import("csstype").Property.AlignItems | undefined;
56
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
57
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
58
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
59
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
60
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
61
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
62
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
63
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
64
+ animationName?: import("csstype").Property.AnimationName | undefined;
65
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
66
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
67
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
68
+ appearance?: import("csstype").Property.Appearance | undefined;
69
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
70
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
71
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
72
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
73
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
74
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
75
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
76
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
77
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
78
+ backgroundPositionX?: string | number | undefined;
79
+ backgroundPositionY?: string | number | undefined;
80
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
81
+ backgroundSize?: string | number | undefined;
82
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
83
+ blockSize?: string | number | undefined;
84
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
85
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
86
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
87
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
88
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
89
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
90
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
91
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
92
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
93
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
94
+ borderBottomLeftRadius?: string | number | undefined;
95
+ borderBottomRightRadius?: string | number | undefined;
96
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
97
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
98
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
99
+ borderEndEndRadius?: string | number | undefined;
100
+ borderEndStartRadius?: string | number | undefined;
101
+ borderImageOutset?: string | number | undefined;
102
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
103
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
104
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
105
+ borderImageWidth?: string | number | undefined;
106
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
107
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
108
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
109
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
110
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
111
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
112
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
113
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
114
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
115
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
116
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
117
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
118
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
119
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
120
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
121
+ borderSpacing?: string | number | undefined;
122
+ borderStartEndRadius?: string | number | undefined;
123
+ borderStartStartRadius?: string | number | undefined;
124
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
125
+ borderTopLeftRadius?: string | number | undefined;
126
+ borderTopRightRadius?: string | number | undefined;
127
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
128
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
129
+ bottom?: string | number | undefined;
130
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
131
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
132
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
133
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
134
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
135
+ breakInside?: import("csstype").Property.BreakInside | undefined;
136
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
137
+ caretColor?: import("csstype").Property.CaretColor | undefined;
138
+ caretShape?: import("csstype").Property.CaretShape | undefined;
139
+ clear?: import("csstype").Property.Clear | undefined;
140
+ clipPath?: import("csstype").Property.ClipPath | undefined;
141
+ color?: import("csstype").Property.Color | undefined;
142
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
143
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
144
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
145
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
146
+ columnGap?: string | number | undefined;
147
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
148
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
149
+ columnRuleWidth?: string | number | undefined;
150
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
151
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
152
+ contain?: import("csstype").Property.Contain | undefined;
153
+ containIntrinsicBlockSize?: string | number | undefined;
154
+ containIntrinsicHeight?: string | number | undefined;
155
+ containIntrinsicInlineSize?: string | number | undefined;
156
+ containIntrinsicWidth?: string | number | undefined;
157
+ containerName?: import("csstype").Property.ContainerName | undefined;
158
+ containerType?: import("csstype").Property.ContainerType | undefined;
159
+ content?: import("csstype").Property.Content | undefined;
160
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
161
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
162
+ counterReset?: import("csstype").Property.CounterReset | undefined;
163
+ counterSet?: import("csstype").Property.CounterSet | undefined;
164
+ cursor?: import("csstype").Property.Cursor | undefined;
165
+ direction?: import("csstype").Property.Direction | undefined;
166
+ display?: import("csstype").Property.Display | undefined;
167
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
168
+ filter?: import("csstype").Property.Filter | undefined;
169
+ flexBasis?: string | number | undefined;
170
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
171
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
172
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
173
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
174
+ float?: import("csstype").Property.Float | undefined;
175
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
176
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
177
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
178
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
179
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
180
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
181
+ fontSize?: string | number | undefined;
182
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
183
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
184
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
185
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
186
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
187
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
188
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
189
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
190
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
191
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
192
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
193
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
194
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
195
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
196
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
197
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
198
+ gridAutoColumns?: string | number | undefined;
199
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
200
+ gridAutoRows?: string | number | undefined;
201
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
202
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
203
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
204
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
205
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
206
+ gridTemplateColumns?: string | number | undefined;
207
+ gridTemplateRows?: string | number | undefined;
208
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
209
+ height?: string | number | undefined;
210
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
211
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
212
+ hyphens?: import("csstype").Property.Hyphens | undefined;
213
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
214
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
215
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
216
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
217
+ inlineSize?: string | number | undefined;
218
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
219
+ insetBlockEnd?: string | number | undefined;
220
+ insetBlockStart?: string | number | undefined;
221
+ insetInlineEnd?: string | number | undefined;
222
+ insetInlineStart?: string | number | undefined;
223
+ isolation?: import("csstype").Property.Isolation | undefined;
224
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
225
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
226
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
227
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
228
+ left?: string | number | undefined;
229
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
230
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
231
+ lineHeight?: string | number | undefined;
232
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
233
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
234
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
235
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
236
+ marginBlockEnd?: string | number | undefined;
237
+ marginBlockStart?: string | number | undefined;
238
+ marginBottom?: string | number | undefined;
239
+ marginInlineEnd?: string | number | undefined;
240
+ marginInlineStart?: string | number | undefined;
241
+ marginLeft?: string | number | undefined;
242
+ marginRight?: string | number | undefined;
243
+ marginTop?: string | number | undefined;
244
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
245
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
246
+ maskBorderOutset?: string | number | undefined;
247
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
248
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
249
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
250
+ maskBorderWidth?: string | number | undefined;
251
+ maskClip?: import("csstype").Property.MaskClip | undefined;
252
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
253
+ maskImage?: import("csstype").Property.MaskImage | undefined;
254
+ maskMode?: import("csstype").Property.MaskMode | undefined;
255
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
256
+ maskPosition?: string | number | undefined;
257
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
258
+ maskSize?: string | number | undefined;
259
+ maskType?: import("csstype").Property.MaskType | undefined;
260
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
261
+ mathShift?: import("csstype").Property.MathShift | undefined;
262
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
263
+ maxBlockSize?: string | number | undefined;
264
+ maxHeight?: string | number | undefined;
265
+ maxInlineSize?: string | number | undefined;
266
+ maxLines?: import("csstype").Property.MaxLines | undefined;
267
+ maxWidth?: string | number | undefined;
268
+ minBlockSize?: string | number | undefined;
269
+ minHeight?: string | number | undefined;
270
+ minInlineSize?: string | number | undefined;
271
+ minWidth?: string | number | undefined;
272
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
273
+ motionDistance?: string | number | undefined;
274
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
275
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
276
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
277
+ objectPosition?: string | number | undefined;
278
+ offsetAnchor?: string | number | undefined;
279
+ offsetDistance?: string | number | undefined;
280
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
281
+ offsetPosition?: string | number | undefined;
282
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
283
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
284
+ opacity?: import("csstype").Property.Opacity | undefined;
285
+ order?: import("csstype").Property.Order | undefined;
286
+ orphans?: import("csstype").Property.Orphans | undefined;
287
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
288
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
289
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
290
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
291
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
292
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
293
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
294
+ overflowClipMargin?: string | number | undefined;
295
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
296
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
297
+ overflowX?: import("csstype").Property.OverflowX | undefined;
298
+ overflowY?: import("csstype").Property.OverflowY | undefined;
299
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
300
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
301
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
302
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
303
+ paddingBlockEnd?: string | number | undefined;
304
+ paddingBlockStart?: string | number | undefined;
305
+ paddingBottom?: string | number | undefined;
306
+ paddingInlineEnd?: string | number | undefined;
307
+ paddingInlineStart?: string | number | undefined;
308
+ paddingLeft?: string | number | undefined;
309
+ paddingRight?: string | number | undefined;
310
+ paddingTop?: string | number | undefined;
311
+ page?: import("csstype").Property.Page | undefined;
312
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
313
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
314
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
315
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
316
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
317
+ perspectiveOrigin?: string | number | undefined;
318
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
319
+ position?: import("csstype").Property.Position | undefined;
320
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
321
+ quotes?: import("csstype").Property.Quotes | undefined;
322
+ resize?: import("csstype").Property.Resize | undefined;
323
+ right?: string | number | undefined;
324
+ rotate?: import("csstype").Property.Rotate | undefined;
325
+ rowGap?: string | number | undefined;
326
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
327
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
328
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
329
+ scale?: import("csstype").Property.Scale | undefined;
330
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
331
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
332
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
333
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
334
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
335
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
336
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
337
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
338
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
339
+ scrollPaddingBlockEnd?: string | number | undefined;
340
+ scrollPaddingBlockStart?: string | number | undefined;
341
+ scrollPaddingBottom?: string | number | undefined;
342
+ scrollPaddingInlineEnd?: string | number | undefined;
343
+ scrollPaddingInlineStart?: string | number | undefined;
344
+ scrollPaddingLeft?: string | number | undefined;
345
+ scrollPaddingRight?: string | number | undefined;
346
+ scrollPaddingTop?: string | number | undefined;
347
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
348
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
349
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
350
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
351
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
352
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
353
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
354
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
355
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
356
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
357
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
358
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
359
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
360
+ shapeMargin?: string | number | undefined;
361
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
362
+ tabSize?: string | number | undefined;
363
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
364
+ textAlign?: import("csstype").Property.TextAlign | undefined;
365
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
366
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
367
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
368
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
369
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
370
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
371
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
372
+ textDecorationThickness?: string | number | undefined;
373
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
374
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
375
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
376
+ textIndent?: string | number | undefined;
377
+ textJustify?: import("csstype").Property.TextJustify | undefined;
378
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
379
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
380
+ textRendering?: import("csstype").Property.TextRendering | undefined;
381
+ textShadow?: import("csstype").Property.TextShadow | undefined;
382
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
383
+ textTransform?: import("csstype").Property.TextTransform | undefined;
384
+ textUnderlineOffset?: string | number | undefined;
385
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
386
+ top?: string | number | undefined;
387
+ touchAction?: import("csstype").Property.TouchAction | undefined;
388
+ transform?: import("csstype").Property.Transform | undefined;
389
+ transformBox?: import("csstype").Property.TransformBox | undefined;
390
+ transformOrigin?: string | number | undefined;
391
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
392
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
393
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
394
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
395
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
396
+ translate?: string | number | undefined;
397
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
398
+ userSelect?: import("csstype").Property.UserSelect | undefined;
399
+ verticalAlign?: string | number | undefined;
400
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
401
+ visibility?: import("csstype").Property.Visibility | undefined;
402
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
403
+ widows?: import("csstype").Property.Widows | undefined;
404
+ width?: string | number | undefined;
405
+ willChange?: import("csstype").Property.WillChange | undefined;
406
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
407
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
408
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
409
+ writingMode?: import("csstype").Property.WritingMode | undefined;
410
+ zIndex?: import("csstype").Property.ZIndex | undefined;
411
+ zoom?: import("csstype").Property.Zoom | undefined;
412
+ all?: import("csstype").Globals | undefined;
413
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
414
+ background?: string | number | undefined;
415
+ backgroundPosition?: string | number | undefined;
416
+ border?: string | number | undefined;
417
+ borderBlock?: string | number | undefined;
418
+ borderBlockEnd?: string | number | undefined;
419
+ borderBlockStart?: string | number | undefined;
420
+ borderBottom?: string | number | undefined;
421
+ borderColor?: import("csstype").Property.BorderColor | undefined;
422
+ borderImage?: import("csstype").Property.BorderImage | undefined;
423
+ borderInline?: string | number | undefined;
424
+ borderInlineEnd?: string | number | undefined;
425
+ borderInlineStart?: string | number | undefined;
426
+ borderLeft?: string | number | undefined;
427
+ borderRadius?: string | number | undefined;
428
+ borderRight?: string | number | undefined;
429
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
430
+ borderTop?: string | number | undefined;
431
+ borderWidth?: string | number | undefined;
432
+ caret?: import("csstype").Property.Caret | undefined;
433
+ columnRule?: string | number | undefined;
434
+ columns?: string | number | undefined;
435
+ containIntrinsicSize?: string | number | undefined;
436
+ container?: import("csstype").Property.Container | undefined;
437
+ flex?: string | number | undefined;
438
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
439
+ font?: import("csstype").Property.Font | undefined;
440
+ gap?: string | number | undefined;
441
+ grid?: import("csstype").Property.Grid | undefined;
442
+ gridArea?: import("csstype").Property.GridArea | undefined;
443
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
444
+ gridRow?: import("csstype").Property.GridRow | undefined;
445
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
446
+ inset?: string | number | undefined;
447
+ insetBlock?: string | number | undefined;
448
+ insetInline?: string | number | undefined;
449
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
450
+ listStyle?: import("csstype").Property.ListStyle | undefined;
451
+ margin?: string | number | undefined;
452
+ marginBlock?: string | number | undefined;
453
+ marginInline?: string | number | undefined;
454
+ mask?: string | number | undefined;
455
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
456
+ motion?: string | number | undefined;
457
+ offset?: string | number | undefined;
458
+ outline?: string | number | undefined;
459
+ overflow?: import("csstype").Property.Overflow | undefined;
460
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
461
+ padding?: string | number | undefined;
462
+ paddingBlock?: string | number | undefined;
463
+ paddingInline?: string | number | undefined;
464
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
465
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
466
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
467
+ scrollMargin?: string | number | undefined;
468
+ scrollMarginBlock?: string | number | undefined;
469
+ scrollMarginInline?: string | number | undefined;
470
+ scrollPadding?: string | number | undefined;
471
+ scrollPaddingBlock?: string | number | undefined;
472
+ scrollPaddingInline?: string | number | undefined;
473
+ scrollSnapMargin?: string | number | undefined;
474
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
475
+ textDecoration?: string | number | undefined;
476
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
477
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
478
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
479
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
480
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
481
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
482
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
483
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
484
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
485
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
486
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
487
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
488
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
489
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
490
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
491
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
492
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
493
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
494
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
495
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
496
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
497
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
498
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
499
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
500
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
501
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
502
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
503
+ MozColumnRuleWidth?: string | number | undefined;
504
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
505
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
506
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
507
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
508
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
509
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
510
+ MozMarginEnd?: string | number | undefined;
511
+ MozMarginStart?: string | number | undefined;
512
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
513
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
514
+ MozPaddingEnd?: string | number | undefined;
515
+ MozPaddingStart?: string | number | undefined;
516
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
517
+ MozPerspectiveOrigin?: string | number | undefined;
518
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
519
+ MozTabSize?: string | number | undefined;
520
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
521
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
522
+ MozTransformOrigin?: string | number | undefined;
523
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
524
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
525
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
526
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
527
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
528
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
529
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
530
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
531
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
532
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
533
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
534
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
535
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
536
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
537
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
538
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
539
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
540
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
541
+ msFilter?: import("csstype").Property.MsFilter | undefined;
542
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
543
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
544
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
545
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
546
+ msGridColumns?: string | number | undefined;
547
+ msGridRows?: string | number | undefined;
548
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
549
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
550
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
551
+ msHyphenateLimitZone?: string | number | undefined;
552
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
553
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
554
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
555
+ msOrder?: import("csstype").Property.Order | undefined;
556
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
557
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
558
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
559
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
560
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
561
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
562
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
563
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
564
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
565
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
566
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
567
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
568
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
569
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
570
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
571
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
572
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
573
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
574
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
575
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
576
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
577
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
578
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
579
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
580
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
581
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
582
+ msTransform?: import("csstype").Property.Transform | undefined;
583
+ msTransformOrigin?: string | number | undefined;
584
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
585
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
586
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
587
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
588
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
589
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
590
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
591
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
592
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
593
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
594
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
595
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
596
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
597
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
598
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
599
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
600
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
601
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
602
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
603
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
604
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
605
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
606
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
607
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
608
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
609
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
610
+ WebkitBackgroundSize?: string | number | undefined;
611
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
612
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
613
+ WebkitBorderBeforeWidth?: string | number | undefined;
614
+ WebkitBorderBottomLeftRadius?: string | number | undefined;
615
+ WebkitBorderBottomRightRadius?: string | number | undefined;
616
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
617
+ WebkitBorderTopLeftRadius?: string | number | undefined;
618
+ WebkitBorderTopRightRadius?: string | number | undefined;
619
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
620
+ WebkitBoxReflect?: string | number | undefined;
621
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
622
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
623
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
624
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
625
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
626
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
627
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
628
+ WebkitColumnRuleWidth?: string | number | undefined;
629
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
630
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
631
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
632
+ WebkitFlexBasis?: string | number | undefined;
633
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
634
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
635
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
636
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
637
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
638
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
639
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
640
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
641
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
642
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
643
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
644
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
645
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
646
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
647
+ WebkitMarginEnd?: string | number | undefined;
648
+ WebkitMarginStart?: string | number | undefined;
649
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
650
+ WebkitMaskBoxImageOutset?: string | number | undefined;
651
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
652
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
653
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
654
+ WebkitMaskBoxImageWidth?: string | number | undefined;
655
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
656
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
657
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
658
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
659
+ WebkitMaskPosition?: string | number | undefined;
660
+ WebkitMaskPositionX?: string | number | undefined;
661
+ WebkitMaskPositionY?: string | number | undefined;
662
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
663
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
664
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
665
+ WebkitMaskSize?: string | number | undefined;
666
+ WebkitMaxInlineSize?: string | number | undefined;
667
+ WebkitOrder?: import("csstype").Property.Order | undefined;
668
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
669
+ WebkitPaddingEnd?: string | number | undefined;
670
+ WebkitPaddingStart?: string | number | undefined;
671
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
672
+ WebkitPerspectiveOrigin?: string | number | undefined;
673
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
674
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
675
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
676
+ WebkitShapeMargin?: string | number | undefined;
677
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
678
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
679
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
680
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
681
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
682
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
683
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
684
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
685
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
686
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
687
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
688
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
689
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
690
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
691
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
692
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
693
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
694
+ WebkitTransformOrigin?: string | number | undefined;
695
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
696
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
697
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
698
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
699
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
700
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
701
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
702
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
703
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
704
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
705
+ MozColumnRule?: string | number | undefined;
706
+ MozColumns?: string | number | undefined;
707
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
708
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
709
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
710
+ msFlex?: string | number | undefined;
711
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
712
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
713
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
714
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
715
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
716
+ WebkitBorderBefore?: string | number | undefined;
717
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
718
+ WebkitBorderRadius?: string | number | undefined;
719
+ WebkitColumnRule?: string | number | undefined;
720
+ WebkitColumns?: string | number | undefined;
721
+ WebkitFlex?: string | number | undefined;
722
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
723
+ WebkitMask?: string | number | undefined;
724
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
725
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
726
+ WebkitTextStroke?: string | number | undefined;
727
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
728
+ azimuth?: import("csstype").Property.Azimuth | undefined;
729
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
730
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
731
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
732
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
733
+ boxLines?: import("csstype").Property.BoxLines | undefined;
734
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
735
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
736
+ boxPack?: import("csstype").Property.BoxPack | undefined;
737
+ clip?: import("csstype").Property.Clip | undefined;
738
+ gridColumnGap?: string | number | undefined;
739
+ gridGap?: string | number | undefined;
740
+ gridRowGap?: string | number | undefined;
741
+ imeMode?: import("csstype").Property.ImeMode | undefined;
742
+ offsetBlock?: string | number | undefined;
743
+ offsetBlockEnd?: string | number | undefined;
744
+ offsetBlockStart?: string | number | undefined;
745
+ offsetInline?: string | number | undefined;
746
+ offsetInlineEnd?: string | number | undefined;
747
+ offsetInlineStart?: string | number | undefined;
748
+ scrollSnapCoordinate?: string | number | undefined;
749
+ scrollSnapDestination?: string | number | undefined;
750
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
751
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
752
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
753
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
754
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
755
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
756
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
757
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
758
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
759
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
760
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
761
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
762
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
763
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
764
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
765
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
766
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
767
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
768
+ MozBackgroundSize?: string | number | undefined;
769
+ MozBorderRadius?: string | number | undefined;
770
+ MozBorderRadiusBottomleft?: string | number | undefined;
771
+ MozBorderRadiusBottomright?: string | number | undefined;
772
+ MozBorderRadiusTopleft?: string | number | undefined;
773
+ MozBorderRadiusTopright?: string | number | undefined;
774
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
775
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
776
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
777
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
778
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
779
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
780
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
781
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
782
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
783
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
784
+ MozOutline?: string | number | undefined;
785
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
786
+ MozOutlineRadius?: string | number | undefined;
787
+ MozOutlineRadiusBottomleft?: string | number | undefined;
788
+ MozOutlineRadiusBottomright?: string | number | undefined;
789
+ MozOutlineRadiusTopleft?: string | number | undefined;
790
+ MozOutlineRadiusTopright?: string | number | undefined;
791
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
792
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
793
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
794
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
795
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
796
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
797
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
798
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
799
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
800
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
801
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
802
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
803
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
804
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
805
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
806
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
807
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
808
+ OBackgroundSize?: string | number | undefined;
809
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
810
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
811
+ OObjectPosition?: string | number | undefined;
812
+ OTabSize?: string | number | undefined;
813
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
814
+ OTransform?: import("csstype").Property.Transform | undefined;
815
+ OTransformOrigin?: string | number | undefined;
816
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
817
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
818
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
819
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
820
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
821
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
822
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
823
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
824
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
825
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
826
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
827
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
828
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
829
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
830
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
831
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
832
+ baselineShift?: string | number | undefined;
833
+ clipRule?: import("csstype").Property.ClipRule | undefined;
834
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
835
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
836
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
837
+ fill?: import("csstype").Property.Fill | undefined;
838
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
839
+ fillRule?: import("csstype").Property.FillRule | undefined;
840
+ floodColor?: import("csstype").Property.FloodColor | undefined;
841
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
842
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
843
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
844
+ marker?: import("csstype").Property.Marker | undefined;
845
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
846
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
847
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
848
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
849
+ stopColor?: import("csstype").Property.StopColor | undefined;
850
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
851
+ stroke?: import("csstype").Property.Stroke | undefined;
852
+ strokeDasharray?: string | number | undefined;
853
+ strokeDashoffset?: string | number | undefined;
854
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
855
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
856
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
857
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
858
+ strokeWidth?: string | number | undefined;
859
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
860
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
861
+ };
862
+ "aria-label": string;
863
+ role: string;
864
+ "aria-hidden": string;
865
+ children?: React.ReactNode;
866
+ }, Element>;
867
+ type SliderArrowProps = React.PropsWithChildren<{
868
+ className?: string;
869
+ dir: "left" | "right";
870
+ }>;
871
+ export declare function SliderArrow({ className, dir, children, ...props }: SliderArrowProps): JSX.Element;
872
+ type SliderNavProps = {
873
+ className?: string;
874
+ };
875
+ export declare function SliderNav({ className, ...props }: SliderNavProps): JSX.Element;
876
+ export {};