motion-plus-vue 1.4.0 → 1.5.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 (46) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/components/Carousel/Carousel.d.ts +31 -0
  3. package/dist/components/Carousel/CarouselView.d.ts +32 -0
  4. package/dist/components/Carousel/const.d.ts +3 -0
  5. package/dist/components/Carousel/context.d.ts +15 -0
  6. package/dist/components/Carousel/index.d.ts +3 -0
  7. package/dist/components/Carousel/utils/calc-current-page.d.ts +1 -0
  8. package/dist/components/Carousel/utils/calc-page-insets.d.ts +5 -0
  9. package/dist/components/Carousel/utils/find-current-index.d.ts +2 -0
  10. package/dist/components/Carousel/utils/find-next-page.d.ts +3 -0
  11. package/dist/components/Carousel/utils/find-prev-page.d.ts +3 -0
  12. package/dist/components/Ticker/TickerItem.d.ts +59 -13
  13. package/dist/components/Ticker/const.d.ts +3 -0
  14. package/dist/components/Ticker/context.d.ts +4259 -2
  15. package/dist/components/Ticker/index.d.ts +1 -1
  16. package/dist/components/Ticker/types.d.ts +16 -1
  17. package/dist/components/Ticker/utils/layout-strategy.d.ts +2 -0
  18. package/dist/es/components/Carousel/Carousel.vue.mjs +79 -0
  19. package/dist/es/components/Carousel/Carousel.vue2.mjs +4 -0
  20. package/dist/es/components/Carousel/CarouselView.vue.mjs +115 -0
  21. package/dist/es/components/Carousel/CarouselView.vue2.mjs +4 -0
  22. package/dist/es/components/Carousel/const.mjs +13 -0
  23. package/dist/es/components/Carousel/context.mjs +6 -0
  24. package/dist/es/components/Carousel/utils/calc-current-page.mjs +13 -0
  25. package/dist/es/components/Carousel/utils/calc-page-insets.mjs +42 -0
  26. package/dist/es/components/Carousel/utils/find-current-index.mjs +13 -0
  27. package/dist/es/components/Carousel/utils/find-next-page.mjs +26 -0
  28. package/dist/es/components/Carousel/utils/find-prev-page.mjs +31 -0
  29. package/dist/es/components/Ticker/Ticker.vue.mjs +270 -111
  30. package/dist/es/components/Ticker/TickerItem.vue.mjs +68 -36
  31. package/dist/es/components/Ticker/const.mjs +12 -3
  32. package/dist/es/components/Ticker/context.mjs +5 -3
  33. package/dist/es/components/Ticker/utils/layout-strategy.mjs +57 -0
  34. package/dist/es/index.mjs +21 -16
  35. package/dist/es/utils/flatten-slots.mjs +22 -16
  36. package/dist/index.d.ts +1 -0
  37. package/dist/size.animate-number.js +1 -0
  38. package/dist/size.carousel.js +1 -0
  39. package/dist/size.cursor.js +1 -0
  40. package/dist/size.ticker.js +1 -0
  41. package/dist/size.typewriter.js +1 -0
  42. package/package.json +31 -8
  43. package/dist/components/Ticker/Ticker.d.ts +0 -51
  44. package/dist/components/Ticker/use-item-offset.d.ts +0 -1
  45. package/dist/es/components/Ticker/use-item-offset.mjs +0 -12
  46. package/dist/es/components/Ticker/utils/get-cumulative-offset.mjs +0 -9
@@ -1,14 +1,4271 @@
1
+ import { TickerState } from './types';
1
2
  import { MotionValue } from 'motion-v';
2
- export declare const useTickerItemContext: <T extends {
3
+ import { ComputedRef, Ref } from 'vue';
4
+ export declare const useTickerItem: <T extends {
3
5
  offset: MotionValue<number>;
6
+ bounds: Ref<{
7
+ start: number;
8
+ end: number;
9
+ }>;
10
+ projection: MotionValue<number>;
11
+ itemIndex: Ref<number>;
12
+ cloneIndex: Ref<number | undefined>;
13
+ props: ComputedRef<{
14
+ "class": string;
15
+ "style": Partial<{
16
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
17
+ string?: string | number | MotionValue<any> | undefined;
18
+ transition?: string | number | MotionValue<any> | undefined;
19
+ x?: string | number | MotionValue<any> | undefined;
20
+ y?: string | number | MotionValue<any> | undefined;
21
+ z?: string | number | MotionValue<any> | undefined;
22
+ translateX?: string | number | MotionValue<any> | undefined;
23
+ translateY?: string | number | MotionValue<any> | undefined;
24
+ translateZ?: string | number | MotionValue<any> | undefined;
25
+ rotate?: string | number | MotionValue<any> | undefined;
26
+ rotateX?: string | number | MotionValue<any> | undefined;
27
+ rotateY?: string | number | MotionValue<any> | undefined;
28
+ rotateZ?: string | number | MotionValue<any> | undefined;
29
+ scale?: string | number | MotionValue<any> | undefined;
30
+ scaleX?: string | number | MotionValue<any> | undefined;
31
+ scaleY?: string | number | MotionValue<any> | undefined;
32
+ scaleZ?: string | number | MotionValue<any> | undefined;
33
+ skew?: string | number | MotionValue<any> | undefined;
34
+ skewX?: string | number | MotionValue<any> | undefined;
35
+ skewY?: string | number | MotionValue<any> | undefined;
36
+ originX?: string | number | MotionValue<any> | undefined;
37
+ originY?: string | number | MotionValue<any> | undefined;
38
+ originZ?: string | number | MotionValue<any> | undefined;
39
+ perspective?: string | number | MotionValue<any> | undefined;
40
+ transformPerspective?: string | number | MotionValue<any> | undefined;
41
+ accentColor?: string | number | MotionValue<any> | undefined;
42
+ alignContent?: string | number | MotionValue<any> | undefined;
43
+ alignItems?: string | number | MotionValue<any> | undefined;
44
+ alignSelf?: string | number | MotionValue<any> | undefined;
45
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
46
+ all?: string | number | MotionValue<any> | undefined;
47
+ animation?: string | number | MotionValue<any> | undefined;
48
+ animationComposition?: string | number | MotionValue<any> | undefined;
49
+ animationDelay?: string | number | MotionValue<any> | undefined;
50
+ animationDirection?: string | number | MotionValue<any> | undefined;
51
+ animationDuration?: string | number | MotionValue<any> | undefined;
52
+ animationFillMode?: string | number | MotionValue<any> | undefined;
53
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
54
+ animationName?: string | number | MotionValue<any> | undefined;
55
+ animationPlayState?: string | number | MotionValue<any> | undefined;
56
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
57
+ appearance?: string | number | MotionValue<any> | undefined;
58
+ aspectRatio?: string | number | MotionValue<any> | undefined;
59
+ backdropFilter?: string | number | MotionValue<any> | undefined;
60
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
61
+ background?: string | number | MotionValue<any> | undefined;
62
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
63
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
64
+ backgroundClip?: string | number | MotionValue<any> | undefined;
65
+ backgroundColor?: string | number | MotionValue<any> | undefined;
66
+ backgroundImage?: string | number | MotionValue<any> | undefined;
67
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
68
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
69
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
70
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
71
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
72
+ backgroundSize?: string | number | MotionValue<any> | undefined;
73
+ baselineShift?: string | number | MotionValue<any> | undefined;
74
+ baselineSource?: string | number | MotionValue<any> | undefined;
75
+ blockSize?: string | number | MotionValue<any> | undefined;
76
+ border?: string | number | MotionValue<any> | undefined;
77
+ borderBlock?: string | number | MotionValue<any> | undefined;
78
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
79
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
80
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
81
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
82
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
83
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
84
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
85
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
86
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
87
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
88
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
89
+ borderBottom?: string | number | MotionValue<any> | undefined;
90
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
91
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
92
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
93
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
94
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
95
+ borderCollapse?: string | number | MotionValue<any> | undefined;
96
+ borderColor?: string | number | MotionValue<any> | undefined;
97
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
98
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
99
+ borderImage?: string | number | MotionValue<any> | undefined;
100
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
101
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
102
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
103
+ borderImageSource?: string | number | MotionValue<any> | undefined;
104
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
105
+ borderInline?: string | number | MotionValue<any> | undefined;
106
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
107
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
108
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
109
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
110
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
111
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
112
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
113
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
114
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
115
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
116
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
117
+ borderLeft?: string | number | MotionValue<any> | undefined;
118
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
119
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
120
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
121
+ borderRadius?: string | number | MotionValue<any> | undefined;
122
+ borderRight?: string | number | MotionValue<any> | undefined;
123
+ borderRightColor?: string | number | MotionValue<any> | undefined;
124
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
125
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
126
+ borderSpacing?: string | number | MotionValue<any> | undefined;
127
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
128
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
129
+ borderStyle?: string | number | MotionValue<any> | undefined;
130
+ borderTop?: string | number | MotionValue<any> | undefined;
131
+ borderTopColor?: string | number | MotionValue<any> | undefined;
132
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
133
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
134
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
135
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
136
+ borderWidth?: string | number | MotionValue<any> | undefined;
137
+ bottom?: string | number | MotionValue<any> | undefined;
138
+ boxShadow?: string | number | MotionValue<any> | undefined;
139
+ boxSizing?: string | number | MotionValue<any> | undefined;
140
+ breakAfter?: string | number | MotionValue<any> | undefined;
141
+ breakBefore?: string | number | MotionValue<any> | undefined;
142
+ breakInside?: string | number | MotionValue<any> | undefined;
143
+ captionSide?: string | number | MotionValue<any> | undefined;
144
+ caretColor?: string | number | MotionValue<any> | undefined;
145
+ clear?: string | number | MotionValue<any> | undefined;
146
+ clip?: string | number | MotionValue<any> | undefined;
147
+ clipPath?: string | number | MotionValue<any> | undefined;
148
+ clipRule?: string | number | MotionValue<any> | undefined;
149
+ color?: string | number | MotionValue<any> | undefined;
150
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
151
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
152
+ colorScheme?: string | number | MotionValue<any> | undefined;
153
+ columnCount?: string | number | MotionValue<any> | undefined;
154
+ columnFill?: string | number | MotionValue<any> | undefined;
155
+ columnGap?: string | number | MotionValue<any> | undefined;
156
+ columnRule?: string | number | MotionValue<any> | undefined;
157
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
158
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
159
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
160
+ columnSpan?: string | number | MotionValue<any> | undefined;
161
+ columnWidth?: string | number | MotionValue<any> | undefined;
162
+ columns?: string | number | MotionValue<any> | undefined;
163
+ contain?: string | number | MotionValue<any> | undefined;
164
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
165
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
166
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
167
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
168
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
169
+ container?: string | number | MotionValue<any> | undefined;
170
+ containerName?: string | number | MotionValue<any> | undefined;
171
+ containerType?: string | number | MotionValue<any> | undefined;
172
+ content?: string | number | MotionValue<any> | undefined;
173
+ contentVisibility?: string | number | MotionValue<any> | undefined;
174
+ counterIncrement?: string | number | MotionValue<any> | undefined;
175
+ counterReset?: string | number | MotionValue<any> | undefined;
176
+ counterSet?: string | number | MotionValue<any> | undefined;
177
+ cssFloat?: string | number | MotionValue<any> | undefined;
178
+ cssText?: string | number | MotionValue<any> | undefined;
179
+ cursor?: string | number | MotionValue<any> | undefined;
180
+ cx?: string | number | MotionValue<any> | undefined;
181
+ cy?: string | number | MotionValue<any> | undefined;
182
+ d?: string | number | MotionValue<any> | undefined;
183
+ direction?: string | number | MotionValue<any> | undefined;
184
+ display?: string | number | MotionValue<any> | undefined;
185
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
186
+ emptyCells?: string | number | MotionValue<any> | undefined;
187
+ fill?: string | number | MotionValue<any> | undefined;
188
+ fillOpacity?: string | number | MotionValue<any> | undefined;
189
+ fillRule?: string | number | MotionValue<any> | undefined;
190
+ filter?: string | number | MotionValue<any> | undefined;
191
+ flex?: string | number | MotionValue<any> | undefined;
192
+ flexBasis?: string | number | MotionValue<any> | undefined;
193
+ flexDirection?: string | number | MotionValue<any> | undefined;
194
+ flexFlow?: string | number | MotionValue<any> | undefined;
195
+ flexGrow?: string | number | MotionValue<any> | undefined;
196
+ flexShrink?: string | number | MotionValue<any> | undefined;
197
+ flexWrap?: string | number | MotionValue<any> | undefined;
198
+ float?: string | number | MotionValue<any> | undefined;
199
+ floodColor?: string | number | MotionValue<any> | undefined;
200
+ floodOpacity?: string | number | MotionValue<any> | undefined;
201
+ font?: string | number | MotionValue<any> | undefined;
202
+ fontFamily?: string | number | MotionValue<any> | undefined;
203
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
204
+ fontKerning?: string | number | MotionValue<any> | undefined;
205
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
206
+ fontPalette?: string | number | MotionValue<any> | undefined;
207
+ fontSize?: string | number | MotionValue<any> | undefined;
208
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
209
+ fontStretch?: string | number | MotionValue<any> | undefined;
210
+ fontStyle?: string | number | MotionValue<any> | undefined;
211
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
212
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
213
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
214
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
215
+ fontVariant?: string | number | MotionValue<any> | undefined;
216
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
217
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
218
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
219
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
220
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
221
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
222
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
223
+ fontWeight?: string | number | MotionValue<any> | undefined;
224
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
225
+ gap?: string | number | MotionValue<any> | undefined;
226
+ grid?: string | number | MotionValue<any> | undefined;
227
+ gridArea?: string | number | MotionValue<any> | undefined;
228
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
229
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
230
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
231
+ gridColumn?: string | number | MotionValue<any> | undefined;
232
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
233
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
234
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
235
+ gridGap?: string | number | MotionValue<any> | undefined;
236
+ gridRow?: string | number | MotionValue<any> | undefined;
237
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
238
+ gridRowGap?: string | number | MotionValue<any> | undefined;
239
+ gridRowStart?: string | number | MotionValue<any> | undefined;
240
+ gridTemplate?: string | number | MotionValue<any> | undefined;
241
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
242
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
243
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
244
+ height?: string | number | MotionValue<any> | undefined;
245
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
246
+ hyphens?: string | number | MotionValue<any> | undefined;
247
+ imageOrientation?: string | number | MotionValue<any> | undefined;
248
+ imageRendering?: string | number | MotionValue<any> | undefined;
249
+ inlineSize?: string | number | MotionValue<any> | undefined;
250
+ inset?: string | number | MotionValue<any> | undefined;
251
+ insetBlock?: string | number | MotionValue<any> | undefined;
252
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
253
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
254
+ insetInline?: string | number | MotionValue<any> | undefined;
255
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
256
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
257
+ isolation?: string | number | MotionValue<any> | undefined;
258
+ justifyContent?: string | number | MotionValue<any> | undefined;
259
+ justifyItems?: string | number | MotionValue<any> | undefined;
260
+ justifySelf?: string | number | MotionValue<any> | undefined;
261
+ left?: string | number | MotionValue<any> | undefined;
262
+ readonly length?: string | number | MotionValue<any> | undefined;
263
+ letterSpacing?: string | number | MotionValue<any> | undefined;
264
+ lightingColor?: string | number | MotionValue<any> | undefined;
265
+ lineBreak?: string | number | MotionValue<any> | undefined;
266
+ lineHeight?: string | number | MotionValue<any> | undefined;
267
+ listStyle?: string | number | MotionValue<any> | undefined;
268
+ listStyleImage?: string | number | MotionValue<any> | undefined;
269
+ listStylePosition?: string | number | MotionValue<any> | undefined;
270
+ listStyleType?: string | number | MotionValue<any> | undefined;
271
+ margin?: string | number | MotionValue<any> | undefined;
272
+ marginBlock?: string | number | MotionValue<any> | undefined;
273
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
274
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
275
+ marginBottom?: string | number | MotionValue<any> | undefined;
276
+ marginInline?: string | number | MotionValue<any> | undefined;
277
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
278
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
279
+ marginLeft?: string | number | MotionValue<any> | undefined;
280
+ marginRight?: string | number | MotionValue<any> | undefined;
281
+ marginTop?: string | number | MotionValue<any> | undefined;
282
+ marker?: string | number | MotionValue<any> | undefined;
283
+ markerEnd?: string | number | MotionValue<any> | undefined;
284
+ markerMid?: string | number | MotionValue<any> | undefined;
285
+ markerStart?: string | number | MotionValue<any> | undefined;
286
+ mask?: string | number | MotionValue<any> | undefined;
287
+ maskClip?: string | number | MotionValue<any> | undefined;
288
+ maskComposite?: string | number | MotionValue<any> | undefined;
289
+ maskImage?: string | number | MotionValue<any> | undefined;
290
+ maskMode?: string | number | MotionValue<any> | undefined;
291
+ maskOrigin?: string | number | MotionValue<any> | undefined;
292
+ maskPosition?: string | number | MotionValue<any> | undefined;
293
+ maskRepeat?: string | number | MotionValue<any> | undefined;
294
+ maskSize?: string | number | MotionValue<any> | undefined;
295
+ maskType?: string | number | MotionValue<any> | undefined;
296
+ mathDepth?: string | number | MotionValue<any> | undefined;
297
+ mathStyle?: string | number | MotionValue<any> | undefined;
298
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
299
+ maxHeight?: string | number | MotionValue<any> | undefined;
300
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
301
+ maxWidth?: string | number | MotionValue<any> | undefined;
302
+ minBlockSize?: string | number | MotionValue<any> | undefined;
303
+ minHeight?: string | number | MotionValue<any> | undefined;
304
+ minInlineSize?: string | number | MotionValue<any> | undefined;
305
+ minWidth?: string | number | MotionValue<any> | undefined;
306
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
307
+ objectFit?: string | number | MotionValue<any> | undefined;
308
+ objectPosition?: string | number | MotionValue<any> | undefined;
309
+ offset?: string | number | MotionValue<any> | undefined;
310
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
311
+ offsetDistance?: string | number | MotionValue<any> | undefined;
312
+ offsetPath?: string | number | MotionValue<any> | undefined;
313
+ offsetPosition?: string | number | MotionValue<any> | undefined;
314
+ offsetRotate?: string | number | MotionValue<any> | undefined;
315
+ opacity?: string | number | MotionValue<any> | undefined;
316
+ order?: string | number | MotionValue<any> | undefined;
317
+ orphans?: string | number | MotionValue<any> | undefined;
318
+ outline?: string | number | MotionValue<any> | undefined;
319
+ outlineColor?: string | number | MotionValue<any> | undefined;
320
+ outlineOffset?: string | number | MotionValue<any> | undefined;
321
+ outlineStyle?: string | number | MotionValue<any> | undefined;
322
+ outlineWidth?: string | number | MotionValue<any> | undefined;
323
+ overflow?: string | number | MotionValue<any> | undefined;
324
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
325
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
326
+ overflowWrap?: string | number | MotionValue<any> | undefined;
327
+ overflowX?: string | number | MotionValue<any> | undefined;
328
+ overflowY?: string | number | MotionValue<any> | undefined;
329
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
330
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
331
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
332
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
333
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
334
+ padding?: string | number | MotionValue<any> | undefined;
335
+ paddingBlock?: string | number | MotionValue<any> | undefined;
336
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
337
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
338
+ paddingBottom?: string | number | MotionValue<any> | undefined;
339
+ paddingInline?: string | number | MotionValue<any> | undefined;
340
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
341
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
342
+ paddingLeft?: string | number | MotionValue<any> | undefined;
343
+ paddingRight?: string | number | MotionValue<any> | undefined;
344
+ paddingTop?: string | number | MotionValue<any> | undefined;
345
+ page?: string | number | MotionValue<any> | undefined;
346
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
347
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
348
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
349
+ paintOrder?: string | number | MotionValue<any> | undefined;
350
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
351
+ placeContent?: string | number | MotionValue<any> | undefined;
352
+ placeItems?: string | number | MotionValue<any> | undefined;
353
+ placeSelf?: string | number | MotionValue<any> | undefined;
354
+ pointerEvents?: string | number | MotionValue<any> | undefined;
355
+ position?: string | number | MotionValue<any> | undefined;
356
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
357
+ quotes?: string | number | MotionValue<any> | undefined;
358
+ r?: string | number | MotionValue<any> | undefined;
359
+ resize?: string | number | MotionValue<any> | undefined;
360
+ right?: string | number | MotionValue<any> | undefined;
361
+ rowGap?: string | number | MotionValue<any> | undefined;
362
+ rubyAlign?: string | number | MotionValue<any> | undefined;
363
+ rubyPosition?: string | number | MotionValue<any> | undefined;
364
+ rx?: string | number | MotionValue<any> | undefined;
365
+ ry?: string | number | MotionValue<any> | undefined;
366
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
367
+ scrollMargin?: string | number | MotionValue<any> | undefined;
368
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
369
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
370
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
371
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
372
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
373
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
374
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
375
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
376
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
377
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
378
+ scrollPadding?: string | number | MotionValue<any> | undefined;
379
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
380
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
381
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
382
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
383
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
384
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
385
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
386
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
387
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
388
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
389
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
390
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
391
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
392
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
393
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
394
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
395
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
396
+ shapeMargin?: string | number | MotionValue<any> | undefined;
397
+ shapeOutside?: string | number | MotionValue<any> | undefined;
398
+ shapeRendering?: string | number | MotionValue<any> | undefined;
399
+ stopColor?: string | number | MotionValue<any> | undefined;
400
+ stopOpacity?: string | number | MotionValue<any> | undefined;
401
+ stroke?: string | number | MotionValue<any> | undefined;
402
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
403
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
404
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
405
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
406
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
407
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
408
+ strokeWidth?: string | number | MotionValue<any> | undefined;
409
+ tabSize?: string | number | MotionValue<any> | undefined;
410
+ tableLayout?: string | number | MotionValue<any> | undefined;
411
+ textAlign?: string | number | MotionValue<any> | undefined;
412
+ textAlignLast?: string | number | MotionValue<any> | undefined;
413
+ textAnchor?: string | number | MotionValue<any> | undefined;
414
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
415
+ textDecoration?: string | number | MotionValue<any> | undefined;
416
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
417
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
418
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
419
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
420
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
421
+ textEmphasis?: string | number | MotionValue<any> | undefined;
422
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
423
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
424
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
425
+ textIndent?: string | number | MotionValue<any> | undefined;
426
+ textOrientation?: string | number | MotionValue<any> | undefined;
427
+ textOverflow?: string | number | MotionValue<any> | undefined;
428
+ textRendering?: string | number | MotionValue<any> | undefined;
429
+ textShadow?: string | number | MotionValue<any> | undefined;
430
+ textTransform?: string | number | MotionValue<any> | undefined;
431
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
432
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
433
+ textWrap?: string | number | MotionValue<any> | undefined;
434
+ textWrapMode?: string | number | MotionValue<any> | undefined;
435
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
436
+ top?: string | number | MotionValue<any> | undefined;
437
+ touchAction?: string | number | MotionValue<any> | undefined;
438
+ transform?: string | number | MotionValue<any> | undefined;
439
+ transformBox?: string | number | MotionValue<any> | undefined;
440
+ transformOrigin?: string | number | MotionValue<any> | undefined;
441
+ transformStyle?: string | number | MotionValue<any> | undefined;
442
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
443
+ transitionDelay?: string | number | MotionValue<any> | undefined;
444
+ transitionDuration?: string | number | MotionValue<any> | undefined;
445
+ transitionProperty?: string | number | MotionValue<any> | undefined;
446
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
447
+ translate?: string | number | MotionValue<any> | undefined;
448
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
449
+ userSelect?: string | number | MotionValue<any> | undefined;
450
+ vectorEffect?: string | number | MotionValue<any> | undefined;
451
+ verticalAlign?: string | number | MotionValue<any> | undefined;
452
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
453
+ visibility?: string | number | MotionValue<any> | undefined;
454
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
455
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
456
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
457
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
458
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
459
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
460
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
461
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
462
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
463
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
464
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
465
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
466
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
467
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
468
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
469
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
470
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
471
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
472
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
473
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
474
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
475
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
476
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
477
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
478
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
479
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
480
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
481
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
482
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
483
+ webkitFilter?: string | number | MotionValue<any> | undefined;
484
+ webkitFlex?: string | number | MotionValue<any> | undefined;
485
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
486
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
487
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
488
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
489
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
490
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
491
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
492
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
493
+ webkitMask?: string | number | MotionValue<any> | undefined;
494
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
495
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
496
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
497
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
498
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
499
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
500
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
501
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
502
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
503
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
504
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
505
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
506
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
507
+ webkitOrder?: string | number | MotionValue<any> | undefined;
508
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
509
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
510
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
511
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
512
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
513
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
514
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
515
+ webkitTransform?: string | number | MotionValue<any> | undefined;
516
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
517
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
518
+ webkitTransition?: string | number | MotionValue<any> | undefined;
519
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
520
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
521
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
522
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
523
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
524
+ whiteSpace?: string | number | MotionValue<any> | undefined;
525
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
526
+ widows?: string | number | MotionValue<any> | undefined;
527
+ width?: string | number | MotionValue<any> | undefined;
528
+ willChange?: string | number | MotionValue<any> | undefined;
529
+ wordBreak?: string | number | MotionValue<any> | undefined;
530
+ wordSpacing?: string | number | MotionValue<any> | undefined;
531
+ wordWrap?: string | number | MotionValue<any> | undefined;
532
+ writingMode?: string | number | MotionValue<any> | undefined;
533
+ zIndex?: string | number | MotionValue<any> | undefined;
534
+ zoom?: string | number | MotionValue<any> | undefined;
535
+ accentHeight?: string | number | MotionValue<any> | undefined;
536
+ accumulate?: string | number | MotionValue<any> | undefined;
537
+ additive?: string | number | MotionValue<any> | undefined;
538
+ allowReorder?: string | number | MotionValue<any> | undefined;
539
+ alphabetic?: string | number | MotionValue<any> | undefined;
540
+ amplitude?: string | number | MotionValue<any> | undefined;
541
+ arabicForm?: string | number | MotionValue<any> | undefined;
542
+ ascent?: string | number | MotionValue<any> | undefined;
543
+ attributeName?: string | number | MotionValue<any> | undefined;
544
+ attributeType?: string | number | MotionValue<any> | undefined;
545
+ autoReverse?: string | number | MotionValue<any> | undefined;
546
+ azimuth?: string | number | MotionValue<any> | undefined;
547
+ baseFrequency?: string | number | MotionValue<any> | undefined;
548
+ baseProfile?: string | number | MotionValue<any> | undefined;
549
+ bbox?: string | number | MotionValue<any> | undefined;
550
+ begin?: string | number | MotionValue<any> | undefined;
551
+ bias?: string | number | MotionValue<any> | undefined;
552
+ by?: string | number | MotionValue<any> | undefined;
553
+ calcMode?: string | number | MotionValue<any> | undefined;
554
+ capHeight?: string | number | MotionValue<any> | undefined;
555
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
556
+ colorProfile?: string | number | MotionValue<any> | undefined;
557
+ colorRendering?: string | number | MotionValue<any> | undefined;
558
+ contentScriptType?: string | number | MotionValue<any> | undefined;
559
+ contentStyleType?: string | number | MotionValue<any> | undefined;
560
+ decelerate?: string | number | MotionValue<any> | undefined;
561
+ descent?: string | number | MotionValue<any> | undefined;
562
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
563
+ divisor?: string | number | MotionValue<any> | undefined;
564
+ dur?: string | number | MotionValue<any> | undefined;
565
+ dx?: string | number | MotionValue<any> | undefined;
566
+ dy?: string | number | MotionValue<any> | undefined;
567
+ edgeMode?: string | number | MotionValue<any> | undefined;
568
+ elevation?: string | number | MotionValue<any> | undefined;
569
+ enableBackground?: string | number | MotionValue<any> | undefined;
570
+ end?: string | number | MotionValue<any> | undefined;
571
+ exponent?: string | number | MotionValue<any> | undefined;
572
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
573
+ filterRes?: string | number | MotionValue<any> | undefined;
574
+ filterUnits?: string | number | MotionValue<any> | undefined;
575
+ focusable?: string | number | MotionValue<any> | undefined;
576
+ format?: string | number | MotionValue<any> | undefined;
577
+ fr?: string | number | MotionValue<any> | undefined;
578
+ fx?: string | number | MotionValue<any> | undefined;
579
+ fy?: string | number | MotionValue<any> | undefined;
580
+ g1?: string | number | MotionValue<any> | undefined;
581
+ g2?: string | number | MotionValue<any> | undefined;
582
+ glyphName?: string | number | MotionValue<any> | undefined;
583
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
584
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
585
+ glyphRef?: string | number | MotionValue<any> | undefined;
586
+ gradientTransform?: string | number | MotionValue<any> | undefined;
587
+ gradientUnits?: string | number | MotionValue<any> | undefined;
588
+ hanging?: string | number | MotionValue<any> | undefined;
589
+ horizAdvX?: string | number | MotionValue<any> | undefined;
590
+ horizOriginX?: string | number | MotionValue<any> | undefined;
591
+ href?: string | number | MotionValue<any> | undefined;
592
+ ideographic?: string | number | MotionValue<any> | undefined;
593
+ in2?: string | number | MotionValue<any> | undefined;
594
+ in?: string | number | MotionValue<any> | undefined;
595
+ intercept?: string | number | MotionValue<any> | undefined;
596
+ k1?: string | number | MotionValue<any> | undefined;
597
+ k2?: string | number | MotionValue<any> | undefined;
598
+ k3?: string | number | MotionValue<any> | undefined;
599
+ k4?: string | number | MotionValue<any> | undefined;
600
+ k?: string | number | MotionValue<any> | undefined;
601
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
602
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
603
+ kerning?: string | number | MotionValue<any> | undefined;
604
+ keyPoints?: string | number | MotionValue<any> | undefined;
605
+ keySplines?: string | number | MotionValue<any> | undefined;
606
+ keyTimes?: string | number | MotionValue<any> | undefined;
607
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
608
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
609
+ local?: string | number | MotionValue<any> | undefined;
610
+ markerHeight?: string | number | MotionValue<any> | undefined;
611
+ markerUnits?: string | number | MotionValue<any> | undefined;
612
+ markerWidth?: string | number | MotionValue<any> | undefined;
613
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
614
+ maskUnits?: string | number | MotionValue<any> | undefined;
615
+ mathematical?: string | number | MotionValue<any> | undefined;
616
+ mode?: string | number | MotionValue<any> | undefined;
617
+ numOctaves?: string | number | MotionValue<any> | undefined;
618
+ operator?: string | number | MotionValue<any> | undefined;
619
+ orient?: string | number | MotionValue<any> | undefined;
620
+ orientation?: string | number | MotionValue<any> | undefined;
621
+ origin?: string | number | MotionValue<any> | undefined;
622
+ overlinePosition?: string | number | MotionValue<any> | undefined;
623
+ overlineThickness?: string | number | MotionValue<any> | undefined;
624
+ panose1?: string | number | MotionValue<any> | undefined;
625
+ path?: string | number | MotionValue<any> | undefined;
626
+ pathLength?: string | number | MotionValue<any> | undefined;
627
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
628
+ patternTransform?: string | number | MotionValue<any> | undefined;
629
+ patternUnits?: string | number | MotionValue<any> | undefined;
630
+ points?: string | number | MotionValue<any> | undefined;
631
+ pointsAtX?: string | number | MotionValue<any> | undefined;
632
+ pointsAtY?: string | number | MotionValue<any> | undefined;
633
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
634
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
635
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
636
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
637
+ radius?: string | number | MotionValue<any> | undefined;
638
+ refX?: string | number | MotionValue<any> | undefined;
639
+ refY?: string | number | MotionValue<any> | undefined;
640
+ renderingIntent?: string | number | MotionValue<any> | undefined;
641
+ repeatCount?: string | number | MotionValue<any> | undefined;
642
+ repeatDur?: string | number | MotionValue<any> | undefined;
643
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
644
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
645
+ restart?: string | number | MotionValue<any> | undefined;
646
+ result?: string | number | MotionValue<any> | undefined;
647
+ seed?: string | number | MotionValue<any> | undefined;
648
+ slope?: string | number | MotionValue<any> | undefined;
649
+ spacing?: string | number | MotionValue<any> | undefined;
650
+ specularConstant?: string | number | MotionValue<any> | undefined;
651
+ specularExponent?: string | number | MotionValue<any> | undefined;
652
+ speed?: string | number | MotionValue<any> | undefined;
653
+ spreadMethod?: string | number | MotionValue<any> | undefined;
654
+ startOffset?: string | number | MotionValue<any> | undefined;
655
+ stdDeviation?: string | number | MotionValue<any> | undefined;
656
+ stemh?: string | number | MotionValue<any> | undefined;
657
+ stemv?: string | number | MotionValue<any> | undefined;
658
+ stitchTiles?: string | number | MotionValue<any> | undefined;
659
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
660
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
661
+ surfaceScale?: string | number | MotionValue<any> | undefined;
662
+ systemLanguage?: string | number | MotionValue<any> | undefined;
663
+ tableValues?: string | number | MotionValue<any> | undefined;
664
+ targetX?: string | number | MotionValue<any> | undefined;
665
+ targetY?: string | number | MotionValue<any> | undefined;
666
+ textLength?: string | number | MotionValue<any> | undefined;
667
+ to?: string | number | MotionValue<any> | undefined;
668
+ u1?: string | number | MotionValue<any> | undefined;
669
+ u2?: string | number | MotionValue<any> | undefined;
670
+ underlinePosition?: string | number | MotionValue<any> | undefined;
671
+ underlineThickness?: string | number | MotionValue<any> | undefined;
672
+ unicode?: string | number | MotionValue<any> | undefined;
673
+ unicodeRange?: string | number | MotionValue<any> | undefined;
674
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
675
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
676
+ values?: string | number | MotionValue<any> | undefined;
677
+ version?: string | number | MotionValue<any> | undefined;
678
+ vertAdvY?: string | number | MotionValue<any> | undefined;
679
+ vertOriginX?: string | number | MotionValue<any> | undefined;
680
+ vertOriginY?: string | number | MotionValue<any> | undefined;
681
+ vHanging?: string | number | MotionValue<any> | undefined;
682
+ vIdeographic?: string | number | MotionValue<any> | undefined;
683
+ viewBox?: string | number | MotionValue<any> | undefined;
684
+ viewTarget?: string | number | MotionValue<any> | undefined;
685
+ vMathematical?: string | number | MotionValue<any> | undefined;
686
+ widths?: string | number | MotionValue<any> | undefined;
687
+ x1?: string | number | MotionValue<any> | undefined;
688
+ x2?: string | number | MotionValue<any> | undefined;
689
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
690
+ xHeight?: string | number | MotionValue<any> | undefined;
691
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
692
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
693
+ xlinkHref?: string | number | MotionValue<any> | undefined;
694
+ xlinkRole?: string | number | MotionValue<any> | undefined;
695
+ xlinkShow?: string | number | MotionValue<any> | undefined;
696
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
697
+ xlinkType?: string | number | MotionValue<any> | undefined;
698
+ xmlBase?: string | number | MotionValue<any> | undefined;
699
+ xmlLang?: string | number | MotionValue<any> | undefined;
700
+ xmlns?: string | number | MotionValue<any> | undefined;
701
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
702
+ xmlSpace?: string | number | MotionValue<any> | undefined;
703
+ y1?: string | number | MotionValue<any> | undefined;
704
+ y2?: string | number | MotionValue<any> | undefined;
705
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
706
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
707
+ pathOffset?: string | number | MotionValue<any> | undefined;
708
+ pathSpacing?: string | number | MotionValue<any> | undefined;
709
+ }>;
710
+ "aria-hidden"?: boolean | undefined;
711
+ "aria-posinset"?: number | undefined;
712
+ "aria-setsize"?: number | undefined;
713
+ }>;
4
714
  } | null | undefined = {
5
715
  offset: MotionValue<number>;
716
+ bounds: Ref<{
717
+ start: number;
718
+ end: number;
719
+ }>;
720
+ projection: MotionValue<number>;
721
+ itemIndex: Ref<number>;
722
+ cloneIndex: Ref<number | undefined>;
723
+ props: ComputedRef<{
724
+ "class": string;
725
+ "style": Partial<{
726
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
727
+ string?: string | number | MotionValue<any> | undefined;
728
+ transition?: string | number | MotionValue<any> | undefined;
729
+ x?: string | number | MotionValue<any> | undefined;
730
+ y?: string | number | MotionValue<any> | undefined;
731
+ z?: string | number | MotionValue<any> | undefined;
732
+ translateX?: string | number | MotionValue<any> | undefined;
733
+ translateY?: string | number | MotionValue<any> | undefined;
734
+ translateZ?: string | number | MotionValue<any> | undefined;
735
+ rotate?: string | number | MotionValue<any> | undefined;
736
+ rotateX?: string | number | MotionValue<any> | undefined;
737
+ rotateY?: string | number | MotionValue<any> | undefined;
738
+ rotateZ?: string | number | MotionValue<any> | undefined;
739
+ scale?: string | number | MotionValue<any> | undefined;
740
+ scaleX?: string | number | MotionValue<any> | undefined;
741
+ scaleY?: string | number | MotionValue<any> | undefined;
742
+ scaleZ?: string | number | MotionValue<any> | undefined;
743
+ skew?: string | number | MotionValue<any> | undefined;
744
+ skewX?: string | number | MotionValue<any> | undefined;
745
+ skewY?: string | number | MotionValue<any> | undefined;
746
+ originX?: string | number | MotionValue<any> | undefined;
747
+ originY?: string | number | MotionValue<any> | undefined;
748
+ originZ?: string | number | MotionValue<any> | undefined;
749
+ perspective?: string | number | MotionValue<any> | undefined;
750
+ transformPerspective?: string | number | MotionValue<any> | undefined;
751
+ accentColor?: string | number | MotionValue<any> | undefined;
752
+ alignContent?: string | number | MotionValue<any> | undefined;
753
+ alignItems?: string | number | MotionValue<any> | undefined;
754
+ alignSelf?: string | number | MotionValue<any> | undefined;
755
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
756
+ all?: string | number | MotionValue<any> | undefined;
757
+ animation?: string | number | MotionValue<any> | undefined;
758
+ animationComposition?: string | number | MotionValue<any> | undefined;
759
+ animationDelay?: string | number | MotionValue<any> | undefined;
760
+ animationDirection?: string | number | MotionValue<any> | undefined;
761
+ animationDuration?: string | number | MotionValue<any> | undefined;
762
+ animationFillMode?: string | number | MotionValue<any> | undefined;
763
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
764
+ animationName?: string | number | MotionValue<any> | undefined;
765
+ animationPlayState?: string | number | MotionValue<any> | undefined;
766
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
767
+ appearance?: string | number | MotionValue<any> | undefined;
768
+ aspectRatio?: string | number | MotionValue<any> | undefined;
769
+ backdropFilter?: string | number | MotionValue<any> | undefined;
770
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
771
+ background?: string | number | MotionValue<any> | undefined;
772
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
773
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
774
+ backgroundClip?: string | number | MotionValue<any> | undefined;
775
+ backgroundColor?: string | number | MotionValue<any> | undefined;
776
+ backgroundImage?: string | number | MotionValue<any> | undefined;
777
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
778
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
779
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
780
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
781
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
782
+ backgroundSize?: string | number | MotionValue<any> | undefined;
783
+ baselineShift?: string | number | MotionValue<any> | undefined;
784
+ baselineSource?: string | number | MotionValue<any> | undefined;
785
+ blockSize?: string | number | MotionValue<any> | undefined;
786
+ border?: string | number | MotionValue<any> | undefined;
787
+ borderBlock?: string | number | MotionValue<any> | undefined;
788
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
789
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
790
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
791
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
792
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
793
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
794
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
795
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
796
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
797
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
798
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
799
+ borderBottom?: string | number | MotionValue<any> | undefined;
800
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
801
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
802
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
803
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
804
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
805
+ borderCollapse?: string | number | MotionValue<any> | undefined;
806
+ borderColor?: string | number | MotionValue<any> | undefined;
807
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
808
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
809
+ borderImage?: string | number | MotionValue<any> | undefined;
810
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
811
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
812
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
813
+ borderImageSource?: string | number | MotionValue<any> | undefined;
814
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
815
+ borderInline?: string | number | MotionValue<any> | undefined;
816
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
817
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
818
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
819
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
820
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
821
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
822
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
823
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
824
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
825
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
826
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
827
+ borderLeft?: string | number | MotionValue<any> | undefined;
828
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
829
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
830
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
831
+ borderRadius?: string | number | MotionValue<any> | undefined;
832
+ borderRight?: string | number | MotionValue<any> | undefined;
833
+ borderRightColor?: string | number | MotionValue<any> | undefined;
834
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
835
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
836
+ borderSpacing?: string | number | MotionValue<any> | undefined;
837
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
838
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
839
+ borderStyle?: string | number | MotionValue<any> | undefined;
840
+ borderTop?: string | number | MotionValue<any> | undefined;
841
+ borderTopColor?: string | number | MotionValue<any> | undefined;
842
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
843
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
844
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
845
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
846
+ borderWidth?: string | number | MotionValue<any> | undefined;
847
+ bottom?: string | number | MotionValue<any> | undefined;
848
+ boxShadow?: string | number | MotionValue<any> | undefined;
849
+ boxSizing?: string | number | MotionValue<any> | undefined;
850
+ breakAfter?: string | number | MotionValue<any> | undefined;
851
+ breakBefore?: string | number | MotionValue<any> | undefined;
852
+ breakInside?: string | number | MotionValue<any> | undefined;
853
+ captionSide?: string | number | MotionValue<any> | undefined;
854
+ caretColor?: string | number | MotionValue<any> | undefined;
855
+ clear?: string | number | MotionValue<any> | undefined;
856
+ clip?: string | number | MotionValue<any> | undefined;
857
+ clipPath?: string | number | MotionValue<any> | undefined;
858
+ clipRule?: string | number | MotionValue<any> | undefined;
859
+ color?: string | number | MotionValue<any> | undefined;
860
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
861
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
862
+ colorScheme?: string | number | MotionValue<any> | undefined;
863
+ columnCount?: string | number | MotionValue<any> | undefined;
864
+ columnFill?: string | number | MotionValue<any> | undefined;
865
+ columnGap?: string | number | MotionValue<any> | undefined;
866
+ columnRule?: string | number | MotionValue<any> | undefined;
867
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
868
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
869
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
870
+ columnSpan?: string | number | MotionValue<any> | undefined;
871
+ columnWidth?: string | number | MotionValue<any> | undefined;
872
+ columns?: string | number | MotionValue<any> | undefined;
873
+ contain?: string | number | MotionValue<any> | undefined;
874
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
875
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
876
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
877
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
878
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
879
+ container?: string | number | MotionValue<any> | undefined;
880
+ containerName?: string | number | MotionValue<any> | undefined;
881
+ containerType?: string | number | MotionValue<any> | undefined;
882
+ content?: string | number | MotionValue<any> | undefined;
883
+ contentVisibility?: string | number | MotionValue<any> | undefined;
884
+ counterIncrement?: string | number | MotionValue<any> | undefined;
885
+ counterReset?: string | number | MotionValue<any> | undefined;
886
+ counterSet?: string | number | MotionValue<any> | undefined;
887
+ cssFloat?: string | number | MotionValue<any> | undefined;
888
+ cssText?: string | number | MotionValue<any> | undefined;
889
+ cursor?: string | number | MotionValue<any> | undefined;
890
+ cx?: string | number | MotionValue<any> | undefined;
891
+ cy?: string | number | MotionValue<any> | undefined;
892
+ d?: string | number | MotionValue<any> | undefined;
893
+ direction?: string | number | MotionValue<any> | undefined;
894
+ display?: string | number | MotionValue<any> | undefined;
895
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
896
+ emptyCells?: string | number | MotionValue<any> | undefined;
897
+ fill?: string | number | MotionValue<any> | undefined;
898
+ fillOpacity?: string | number | MotionValue<any> | undefined;
899
+ fillRule?: string | number | MotionValue<any> | undefined;
900
+ filter?: string | number | MotionValue<any> | undefined;
901
+ flex?: string | number | MotionValue<any> | undefined;
902
+ flexBasis?: string | number | MotionValue<any> | undefined;
903
+ flexDirection?: string | number | MotionValue<any> | undefined;
904
+ flexFlow?: string | number | MotionValue<any> | undefined;
905
+ flexGrow?: string | number | MotionValue<any> | undefined;
906
+ flexShrink?: string | number | MotionValue<any> | undefined;
907
+ flexWrap?: string | number | MotionValue<any> | undefined;
908
+ float?: string | number | MotionValue<any> | undefined;
909
+ floodColor?: string | number | MotionValue<any> | undefined;
910
+ floodOpacity?: string | number | MotionValue<any> | undefined;
911
+ font?: string | number | MotionValue<any> | undefined;
912
+ fontFamily?: string | number | MotionValue<any> | undefined;
913
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
914
+ fontKerning?: string | number | MotionValue<any> | undefined;
915
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
916
+ fontPalette?: string | number | MotionValue<any> | undefined;
917
+ fontSize?: string | number | MotionValue<any> | undefined;
918
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
919
+ fontStretch?: string | number | MotionValue<any> | undefined;
920
+ fontStyle?: string | number | MotionValue<any> | undefined;
921
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
922
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
923
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
924
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
925
+ fontVariant?: string | number | MotionValue<any> | undefined;
926
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
927
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
928
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
929
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
930
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
931
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
932
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
933
+ fontWeight?: string | number | MotionValue<any> | undefined;
934
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
935
+ gap?: string | number | MotionValue<any> | undefined;
936
+ grid?: string | number | MotionValue<any> | undefined;
937
+ gridArea?: string | number | MotionValue<any> | undefined;
938
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
939
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
940
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
941
+ gridColumn?: string | number | MotionValue<any> | undefined;
942
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
943
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
944
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
945
+ gridGap?: string | number | MotionValue<any> | undefined;
946
+ gridRow?: string | number | MotionValue<any> | undefined;
947
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
948
+ gridRowGap?: string | number | MotionValue<any> | undefined;
949
+ gridRowStart?: string | number | MotionValue<any> | undefined;
950
+ gridTemplate?: string | number | MotionValue<any> | undefined;
951
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
952
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
953
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
954
+ height?: string | number | MotionValue<any> | undefined;
955
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
956
+ hyphens?: string | number | MotionValue<any> | undefined;
957
+ imageOrientation?: string | number | MotionValue<any> | undefined;
958
+ imageRendering?: string | number | MotionValue<any> | undefined;
959
+ inlineSize?: string | number | MotionValue<any> | undefined;
960
+ inset?: string | number | MotionValue<any> | undefined;
961
+ insetBlock?: string | number | MotionValue<any> | undefined;
962
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
963
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
964
+ insetInline?: string | number | MotionValue<any> | undefined;
965
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
966
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
967
+ isolation?: string | number | MotionValue<any> | undefined;
968
+ justifyContent?: string | number | MotionValue<any> | undefined;
969
+ justifyItems?: string | number | MotionValue<any> | undefined;
970
+ justifySelf?: string | number | MotionValue<any> | undefined;
971
+ left?: string | number | MotionValue<any> | undefined;
972
+ readonly length?: string | number | MotionValue<any> | undefined;
973
+ letterSpacing?: string | number | MotionValue<any> | undefined;
974
+ lightingColor?: string | number | MotionValue<any> | undefined;
975
+ lineBreak?: string | number | MotionValue<any> | undefined;
976
+ lineHeight?: string | number | MotionValue<any> | undefined;
977
+ listStyle?: string | number | MotionValue<any> | undefined;
978
+ listStyleImage?: string | number | MotionValue<any> | undefined;
979
+ listStylePosition?: string | number | MotionValue<any> | undefined;
980
+ listStyleType?: string | number | MotionValue<any> | undefined;
981
+ margin?: string | number | MotionValue<any> | undefined;
982
+ marginBlock?: string | number | MotionValue<any> | undefined;
983
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
984
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
985
+ marginBottom?: string | number | MotionValue<any> | undefined;
986
+ marginInline?: string | number | MotionValue<any> | undefined;
987
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
988
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
989
+ marginLeft?: string | number | MotionValue<any> | undefined;
990
+ marginRight?: string | number | MotionValue<any> | undefined;
991
+ marginTop?: string | number | MotionValue<any> | undefined;
992
+ marker?: string | number | MotionValue<any> | undefined;
993
+ markerEnd?: string | number | MotionValue<any> | undefined;
994
+ markerMid?: string | number | MotionValue<any> | undefined;
995
+ markerStart?: string | number | MotionValue<any> | undefined;
996
+ mask?: string | number | MotionValue<any> | undefined;
997
+ maskClip?: string | number | MotionValue<any> | undefined;
998
+ maskComposite?: string | number | MotionValue<any> | undefined;
999
+ maskImage?: string | number | MotionValue<any> | undefined;
1000
+ maskMode?: string | number | MotionValue<any> | undefined;
1001
+ maskOrigin?: string | number | MotionValue<any> | undefined;
1002
+ maskPosition?: string | number | MotionValue<any> | undefined;
1003
+ maskRepeat?: string | number | MotionValue<any> | undefined;
1004
+ maskSize?: string | number | MotionValue<any> | undefined;
1005
+ maskType?: string | number | MotionValue<any> | undefined;
1006
+ mathDepth?: string | number | MotionValue<any> | undefined;
1007
+ mathStyle?: string | number | MotionValue<any> | undefined;
1008
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
1009
+ maxHeight?: string | number | MotionValue<any> | undefined;
1010
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
1011
+ maxWidth?: string | number | MotionValue<any> | undefined;
1012
+ minBlockSize?: string | number | MotionValue<any> | undefined;
1013
+ minHeight?: string | number | MotionValue<any> | undefined;
1014
+ minInlineSize?: string | number | MotionValue<any> | undefined;
1015
+ minWidth?: string | number | MotionValue<any> | undefined;
1016
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
1017
+ objectFit?: string | number | MotionValue<any> | undefined;
1018
+ objectPosition?: string | number | MotionValue<any> | undefined;
1019
+ offset?: string | number | MotionValue<any> | undefined;
1020
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
1021
+ offsetDistance?: string | number | MotionValue<any> | undefined;
1022
+ offsetPath?: string | number | MotionValue<any> | undefined;
1023
+ offsetPosition?: string | number | MotionValue<any> | undefined;
1024
+ offsetRotate?: string | number | MotionValue<any> | undefined;
1025
+ opacity?: string | number | MotionValue<any> | undefined;
1026
+ order?: string | number | MotionValue<any> | undefined;
1027
+ orphans?: string | number | MotionValue<any> | undefined;
1028
+ outline?: string | number | MotionValue<any> | undefined;
1029
+ outlineColor?: string | number | MotionValue<any> | undefined;
1030
+ outlineOffset?: string | number | MotionValue<any> | undefined;
1031
+ outlineStyle?: string | number | MotionValue<any> | undefined;
1032
+ outlineWidth?: string | number | MotionValue<any> | undefined;
1033
+ overflow?: string | number | MotionValue<any> | undefined;
1034
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
1035
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
1036
+ overflowWrap?: string | number | MotionValue<any> | undefined;
1037
+ overflowX?: string | number | MotionValue<any> | undefined;
1038
+ overflowY?: string | number | MotionValue<any> | undefined;
1039
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
1040
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
1041
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
1042
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
1043
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
1044
+ padding?: string | number | MotionValue<any> | undefined;
1045
+ paddingBlock?: string | number | MotionValue<any> | undefined;
1046
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
1047
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
1048
+ paddingBottom?: string | number | MotionValue<any> | undefined;
1049
+ paddingInline?: string | number | MotionValue<any> | undefined;
1050
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
1051
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
1052
+ paddingLeft?: string | number | MotionValue<any> | undefined;
1053
+ paddingRight?: string | number | MotionValue<any> | undefined;
1054
+ paddingTop?: string | number | MotionValue<any> | undefined;
1055
+ page?: string | number | MotionValue<any> | undefined;
1056
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
1057
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
1058
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
1059
+ paintOrder?: string | number | MotionValue<any> | undefined;
1060
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
1061
+ placeContent?: string | number | MotionValue<any> | undefined;
1062
+ placeItems?: string | number | MotionValue<any> | undefined;
1063
+ placeSelf?: string | number | MotionValue<any> | undefined;
1064
+ pointerEvents?: string | number | MotionValue<any> | undefined;
1065
+ position?: string | number | MotionValue<any> | undefined;
1066
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
1067
+ quotes?: string | number | MotionValue<any> | undefined;
1068
+ r?: string | number | MotionValue<any> | undefined;
1069
+ resize?: string | number | MotionValue<any> | undefined;
1070
+ right?: string | number | MotionValue<any> | undefined;
1071
+ rowGap?: string | number | MotionValue<any> | undefined;
1072
+ rubyAlign?: string | number | MotionValue<any> | undefined;
1073
+ rubyPosition?: string | number | MotionValue<any> | undefined;
1074
+ rx?: string | number | MotionValue<any> | undefined;
1075
+ ry?: string | number | MotionValue<any> | undefined;
1076
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
1077
+ scrollMargin?: string | number | MotionValue<any> | undefined;
1078
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
1079
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
1080
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
1081
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
1082
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
1083
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
1084
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
1085
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
1086
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
1087
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
1088
+ scrollPadding?: string | number | MotionValue<any> | undefined;
1089
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
1090
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
1091
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
1092
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
1093
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
1094
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
1095
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
1096
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
1097
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
1098
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
1099
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
1100
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
1101
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
1102
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
1103
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
1104
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
1105
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
1106
+ shapeMargin?: string | number | MotionValue<any> | undefined;
1107
+ shapeOutside?: string | number | MotionValue<any> | undefined;
1108
+ shapeRendering?: string | number | MotionValue<any> | undefined;
1109
+ stopColor?: string | number | MotionValue<any> | undefined;
1110
+ stopOpacity?: string | number | MotionValue<any> | undefined;
1111
+ stroke?: string | number | MotionValue<any> | undefined;
1112
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
1113
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
1114
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
1115
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
1116
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
1117
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
1118
+ strokeWidth?: string | number | MotionValue<any> | undefined;
1119
+ tabSize?: string | number | MotionValue<any> | undefined;
1120
+ tableLayout?: string | number | MotionValue<any> | undefined;
1121
+ textAlign?: string | number | MotionValue<any> | undefined;
1122
+ textAlignLast?: string | number | MotionValue<any> | undefined;
1123
+ textAnchor?: string | number | MotionValue<any> | undefined;
1124
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
1125
+ textDecoration?: string | number | MotionValue<any> | undefined;
1126
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
1127
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
1128
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
1129
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
1130
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
1131
+ textEmphasis?: string | number | MotionValue<any> | undefined;
1132
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
1133
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
1134
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
1135
+ textIndent?: string | number | MotionValue<any> | undefined;
1136
+ textOrientation?: string | number | MotionValue<any> | undefined;
1137
+ textOverflow?: string | number | MotionValue<any> | undefined;
1138
+ textRendering?: string | number | MotionValue<any> | undefined;
1139
+ textShadow?: string | number | MotionValue<any> | undefined;
1140
+ textTransform?: string | number | MotionValue<any> | undefined;
1141
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
1142
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
1143
+ textWrap?: string | number | MotionValue<any> | undefined;
1144
+ textWrapMode?: string | number | MotionValue<any> | undefined;
1145
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
1146
+ top?: string | number | MotionValue<any> | undefined;
1147
+ touchAction?: string | number | MotionValue<any> | undefined;
1148
+ transform?: string | number | MotionValue<any> | undefined;
1149
+ transformBox?: string | number | MotionValue<any> | undefined;
1150
+ transformOrigin?: string | number | MotionValue<any> | undefined;
1151
+ transformStyle?: string | number | MotionValue<any> | undefined;
1152
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
1153
+ transitionDelay?: string | number | MotionValue<any> | undefined;
1154
+ transitionDuration?: string | number | MotionValue<any> | undefined;
1155
+ transitionProperty?: string | number | MotionValue<any> | undefined;
1156
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
1157
+ translate?: string | number | MotionValue<any> | undefined;
1158
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
1159
+ userSelect?: string | number | MotionValue<any> | undefined;
1160
+ vectorEffect?: string | number | MotionValue<any> | undefined;
1161
+ verticalAlign?: string | number | MotionValue<any> | undefined;
1162
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
1163
+ visibility?: string | number | MotionValue<any> | undefined;
1164
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
1165
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
1166
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
1167
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
1168
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
1169
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
1170
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
1171
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
1172
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
1173
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
1174
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
1175
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
1176
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
1177
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
1178
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
1179
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
1180
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
1181
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
1182
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
1183
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
1184
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
1185
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
1186
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
1187
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
1188
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
1189
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
1190
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
1191
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
1192
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
1193
+ webkitFilter?: string | number | MotionValue<any> | undefined;
1194
+ webkitFlex?: string | number | MotionValue<any> | undefined;
1195
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
1196
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
1197
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
1198
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
1199
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
1200
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
1201
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
1202
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
1203
+ webkitMask?: string | number | MotionValue<any> | undefined;
1204
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
1205
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
1206
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
1207
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
1208
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
1209
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
1210
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
1211
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
1212
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
1213
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
1214
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
1215
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
1216
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
1217
+ webkitOrder?: string | number | MotionValue<any> | undefined;
1218
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
1219
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
1220
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
1221
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
1222
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
1223
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
1224
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
1225
+ webkitTransform?: string | number | MotionValue<any> | undefined;
1226
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
1227
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
1228
+ webkitTransition?: string | number | MotionValue<any> | undefined;
1229
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
1230
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
1231
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
1232
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
1233
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
1234
+ whiteSpace?: string | number | MotionValue<any> | undefined;
1235
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
1236
+ widows?: string | number | MotionValue<any> | undefined;
1237
+ width?: string | number | MotionValue<any> | undefined;
1238
+ willChange?: string | number | MotionValue<any> | undefined;
1239
+ wordBreak?: string | number | MotionValue<any> | undefined;
1240
+ wordSpacing?: string | number | MotionValue<any> | undefined;
1241
+ wordWrap?: string | number | MotionValue<any> | undefined;
1242
+ writingMode?: string | number | MotionValue<any> | undefined;
1243
+ zIndex?: string | number | MotionValue<any> | undefined;
1244
+ zoom?: string | number | MotionValue<any> | undefined;
1245
+ accentHeight?: string | number | MotionValue<any> | undefined;
1246
+ accumulate?: string | number | MotionValue<any> | undefined;
1247
+ additive?: string | number | MotionValue<any> | undefined;
1248
+ allowReorder?: string | number | MotionValue<any> | undefined;
1249
+ alphabetic?: string | number | MotionValue<any> | undefined;
1250
+ amplitude?: string | number | MotionValue<any> | undefined;
1251
+ arabicForm?: string | number | MotionValue<any> | undefined;
1252
+ ascent?: string | number | MotionValue<any> | undefined;
1253
+ attributeName?: string | number | MotionValue<any> | undefined;
1254
+ attributeType?: string | number | MotionValue<any> | undefined;
1255
+ autoReverse?: string | number | MotionValue<any> | undefined;
1256
+ azimuth?: string | number | MotionValue<any> | undefined;
1257
+ baseFrequency?: string | number | MotionValue<any> | undefined;
1258
+ baseProfile?: string | number | MotionValue<any> | undefined;
1259
+ bbox?: string | number | MotionValue<any> | undefined;
1260
+ begin?: string | number | MotionValue<any> | undefined;
1261
+ bias?: string | number | MotionValue<any> | undefined;
1262
+ by?: string | number | MotionValue<any> | undefined;
1263
+ calcMode?: string | number | MotionValue<any> | undefined;
1264
+ capHeight?: string | number | MotionValue<any> | undefined;
1265
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
1266
+ colorProfile?: string | number | MotionValue<any> | undefined;
1267
+ colorRendering?: string | number | MotionValue<any> | undefined;
1268
+ contentScriptType?: string | number | MotionValue<any> | undefined;
1269
+ contentStyleType?: string | number | MotionValue<any> | undefined;
1270
+ decelerate?: string | number | MotionValue<any> | undefined;
1271
+ descent?: string | number | MotionValue<any> | undefined;
1272
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
1273
+ divisor?: string | number | MotionValue<any> | undefined;
1274
+ dur?: string | number | MotionValue<any> | undefined;
1275
+ dx?: string | number | MotionValue<any> | undefined;
1276
+ dy?: string | number | MotionValue<any> | undefined;
1277
+ edgeMode?: string | number | MotionValue<any> | undefined;
1278
+ elevation?: string | number | MotionValue<any> | undefined;
1279
+ enableBackground?: string | number | MotionValue<any> | undefined;
1280
+ end?: string | number | MotionValue<any> | undefined;
1281
+ exponent?: string | number | MotionValue<any> | undefined;
1282
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
1283
+ filterRes?: string | number | MotionValue<any> | undefined;
1284
+ filterUnits?: string | number | MotionValue<any> | undefined;
1285
+ focusable?: string | number | MotionValue<any> | undefined;
1286
+ format?: string | number | MotionValue<any> | undefined;
1287
+ fr?: string | number | MotionValue<any> | undefined;
1288
+ fx?: string | number | MotionValue<any> | undefined;
1289
+ fy?: string | number | MotionValue<any> | undefined;
1290
+ g1?: string | number | MotionValue<any> | undefined;
1291
+ g2?: string | number | MotionValue<any> | undefined;
1292
+ glyphName?: string | number | MotionValue<any> | undefined;
1293
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
1294
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
1295
+ glyphRef?: string | number | MotionValue<any> | undefined;
1296
+ gradientTransform?: string | number | MotionValue<any> | undefined;
1297
+ gradientUnits?: string | number | MotionValue<any> | undefined;
1298
+ hanging?: string | number | MotionValue<any> | undefined;
1299
+ horizAdvX?: string | number | MotionValue<any> | undefined;
1300
+ horizOriginX?: string | number | MotionValue<any> | undefined;
1301
+ href?: string | number | MotionValue<any> | undefined;
1302
+ ideographic?: string | number | MotionValue<any> | undefined;
1303
+ in2?: string | number | MotionValue<any> | undefined;
1304
+ in?: string | number | MotionValue<any> | undefined;
1305
+ intercept?: string | number | MotionValue<any> | undefined;
1306
+ k1?: string | number | MotionValue<any> | undefined;
1307
+ k2?: string | number | MotionValue<any> | undefined;
1308
+ k3?: string | number | MotionValue<any> | undefined;
1309
+ k4?: string | number | MotionValue<any> | undefined;
1310
+ k?: string | number | MotionValue<any> | undefined;
1311
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
1312
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
1313
+ kerning?: string | number | MotionValue<any> | undefined;
1314
+ keyPoints?: string | number | MotionValue<any> | undefined;
1315
+ keySplines?: string | number | MotionValue<any> | undefined;
1316
+ keyTimes?: string | number | MotionValue<any> | undefined;
1317
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
1318
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
1319
+ local?: string | number | MotionValue<any> | undefined;
1320
+ markerHeight?: string | number | MotionValue<any> | undefined;
1321
+ markerUnits?: string | number | MotionValue<any> | undefined;
1322
+ markerWidth?: string | number | MotionValue<any> | undefined;
1323
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
1324
+ maskUnits?: string | number | MotionValue<any> | undefined;
1325
+ mathematical?: string | number | MotionValue<any> | undefined;
1326
+ mode?: string | number | MotionValue<any> | undefined;
1327
+ numOctaves?: string | number | MotionValue<any> | undefined;
1328
+ operator?: string | number | MotionValue<any> | undefined;
1329
+ orient?: string | number | MotionValue<any> | undefined;
1330
+ orientation?: string | number | MotionValue<any> | undefined;
1331
+ origin?: string | number | MotionValue<any> | undefined;
1332
+ overlinePosition?: string | number | MotionValue<any> | undefined;
1333
+ overlineThickness?: string | number | MotionValue<any> | undefined;
1334
+ panose1?: string | number | MotionValue<any> | undefined;
1335
+ path?: string | number | MotionValue<any> | undefined;
1336
+ pathLength?: string | number | MotionValue<any> | undefined;
1337
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
1338
+ patternTransform?: string | number | MotionValue<any> | undefined;
1339
+ patternUnits?: string | number | MotionValue<any> | undefined;
1340
+ points?: string | number | MotionValue<any> | undefined;
1341
+ pointsAtX?: string | number | MotionValue<any> | undefined;
1342
+ pointsAtY?: string | number | MotionValue<any> | undefined;
1343
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
1344
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
1345
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
1346
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
1347
+ radius?: string | number | MotionValue<any> | undefined;
1348
+ refX?: string | number | MotionValue<any> | undefined;
1349
+ refY?: string | number | MotionValue<any> | undefined;
1350
+ renderingIntent?: string | number | MotionValue<any> | undefined;
1351
+ repeatCount?: string | number | MotionValue<any> | undefined;
1352
+ repeatDur?: string | number | MotionValue<any> | undefined;
1353
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
1354
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
1355
+ restart?: string | number | MotionValue<any> | undefined;
1356
+ result?: string | number | MotionValue<any> | undefined;
1357
+ seed?: string | number | MotionValue<any> | undefined;
1358
+ slope?: string | number | MotionValue<any> | undefined;
1359
+ spacing?: string | number | MotionValue<any> | undefined;
1360
+ specularConstant?: string | number | MotionValue<any> | undefined;
1361
+ specularExponent?: string | number | MotionValue<any> | undefined;
1362
+ speed?: string | number | MotionValue<any> | undefined;
1363
+ spreadMethod?: string | number | MotionValue<any> | undefined;
1364
+ startOffset?: string | number | MotionValue<any> | undefined;
1365
+ stdDeviation?: string | number | MotionValue<any> | undefined;
1366
+ stemh?: string | number | MotionValue<any> | undefined;
1367
+ stemv?: string | number | MotionValue<any> | undefined;
1368
+ stitchTiles?: string | number | MotionValue<any> | undefined;
1369
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
1370
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
1371
+ surfaceScale?: string | number | MotionValue<any> | undefined;
1372
+ systemLanguage?: string | number | MotionValue<any> | undefined;
1373
+ tableValues?: string | number | MotionValue<any> | undefined;
1374
+ targetX?: string | number | MotionValue<any> | undefined;
1375
+ targetY?: string | number | MotionValue<any> | undefined;
1376
+ textLength?: string | number | MotionValue<any> | undefined;
1377
+ to?: string | number | MotionValue<any> | undefined;
1378
+ u1?: string | number | MotionValue<any> | undefined;
1379
+ u2?: string | number | MotionValue<any> | undefined;
1380
+ underlinePosition?: string | number | MotionValue<any> | undefined;
1381
+ underlineThickness?: string | number | MotionValue<any> | undefined;
1382
+ unicode?: string | number | MotionValue<any> | undefined;
1383
+ unicodeRange?: string | number | MotionValue<any> | undefined;
1384
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
1385
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
1386
+ values?: string | number | MotionValue<any> | undefined;
1387
+ version?: string | number | MotionValue<any> | undefined;
1388
+ vertAdvY?: string | number | MotionValue<any> | undefined;
1389
+ vertOriginX?: string | number | MotionValue<any> | undefined;
1390
+ vertOriginY?: string | number | MotionValue<any> | undefined;
1391
+ vHanging?: string | number | MotionValue<any> | undefined;
1392
+ vIdeographic?: string | number | MotionValue<any> | undefined;
1393
+ viewBox?: string | number | MotionValue<any> | undefined;
1394
+ viewTarget?: string | number | MotionValue<any> | undefined;
1395
+ vMathematical?: string | number | MotionValue<any> | undefined;
1396
+ widths?: string | number | MotionValue<any> | undefined;
1397
+ x1?: string | number | MotionValue<any> | undefined;
1398
+ x2?: string | number | MotionValue<any> | undefined;
1399
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
1400
+ xHeight?: string | number | MotionValue<any> | undefined;
1401
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
1402
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
1403
+ xlinkHref?: string | number | MotionValue<any> | undefined;
1404
+ xlinkRole?: string | number | MotionValue<any> | undefined;
1405
+ xlinkShow?: string | number | MotionValue<any> | undefined;
1406
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
1407
+ xlinkType?: string | number | MotionValue<any> | undefined;
1408
+ xmlBase?: string | number | MotionValue<any> | undefined;
1409
+ xmlLang?: string | number | MotionValue<any> | undefined;
1410
+ xmlns?: string | number | MotionValue<any> | undefined;
1411
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
1412
+ xmlSpace?: string | number | MotionValue<any> | undefined;
1413
+ y1?: string | number | MotionValue<any> | undefined;
1414
+ y2?: string | number | MotionValue<any> | undefined;
1415
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
1416
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
1417
+ pathOffset?: string | number | MotionValue<any> | undefined;
1418
+ pathSpacing?: string | number | MotionValue<any> | undefined;
1419
+ }>;
1420
+ "aria-hidden"?: boolean | undefined;
1421
+ "aria-posinset"?: number | undefined;
1422
+ "aria-setsize"?: number | undefined;
1423
+ }>;
6
1424
  } | null>(fallback?: T | undefined) => T extends null ? {
7
1425
  offset: MotionValue<number>;
1426
+ bounds: Ref<{
1427
+ start: number;
1428
+ end: number;
1429
+ }>;
1430
+ projection: MotionValue<number>;
1431
+ itemIndex: Ref<number>;
1432
+ cloneIndex: Ref<number | undefined>;
1433
+ props: ComputedRef<{
1434
+ "class": string;
1435
+ "style": Partial<{
1436
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
1437
+ string?: string | number | MotionValue<any> | undefined;
1438
+ transition?: string | number | MotionValue<any> | undefined;
1439
+ x?: string | number | MotionValue<any> | undefined;
1440
+ y?: string | number | MotionValue<any> | undefined;
1441
+ z?: string | number | MotionValue<any> | undefined;
1442
+ translateX?: string | number | MotionValue<any> | undefined;
1443
+ translateY?: string | number | MotionValue<any> | undefined;
1444
+ translateZ?: string | number | MotionValue<any> | undefined;
1445
+ rotate?: string | number | MotionValue<any> | undefined;
1446
+ rotateX?: string | number | MotionValue<any> | undefined;
1447
+ rotateY?: string | number | MotionValue<any> | undefined;
1448
+ rotateZ?: string | number | MotionValue<any> | undefined;
1449
+ scale?: string | number | MotionValue<any> | undefined;
1450
+ scaleX?: string | number | MotionValue<any> | undefined;
1451
+ scaleY?: string | number | MotionValue<any> | undefined;
1452
+ scaleZ?: string | number | MotionValue<any> | undefined;
1453
+ skew?: string | number | MotionValue<any> | undefined;
1454
+ skewX?: string | number | MotionValue<any> | undefined;
1455
+ skewY?: string | number | MotionValue<any> | undefined;
1456
+ originX?: string | number | MotionValue<any> | undefined;
1457
+ originY?: string | number | MotionValue<any> | undefined;
1458
+ originZ?: string | number | MotionValue<any> | undefined;
1459
+ perspective?: string | number | MotionValue<any> | undefined;
1460
+ transformPerspective?: string | number | MotionValue<any> | undefined;
1461
+ accentColor?: string | number | MotionValue<any> | undefined;
1462
+ alignContent?: string | number | MotionValue<any> | undefined;
1463
+ alignItems?: string | number | MotionValue<any> | undefined;
1464
+ alignSelf?: string | number | MotionValue<any> | undefined;
1465
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
1466
+ all?: string | number | MotionValue<any> | undefined;
1467
+ animation?: string | number | MotionValue<any> | undefined;
1468
+ animationComposition?: string | number | MotionValue<any> | undefined;
1469
+ animationDelay?: string | number | MotionValue<any> | undefined;
1470
+ animationDirection?: string | number | MotionValue<any> | undefined;
1471
+ animationDuration?: string | number | MotionValue<any> | undefined;
1472
+ animationFillMode?: string | number | MotionValue<any> | undefined;
1473
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
1474
+ animationName?: string | number | MotionValue<any> | undefined;
1475
+ animationPlayState?: string | number | MotionValue<any> | undefined;
1476
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
1477
+ appearance?: string | number | MotionValue<any> | undefined;
1478
+ aspectRatio?: string | number | MotionValue<any> | undefined;
1479
+ backdropFilter?: string | number | MotionValue<any> | undefined;
1480
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
1481
+ background?: string | number | MotionValue<any> | undefined;
1482
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
1483
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
1484
+ backgroundClip?: string | number | MotionValue<any> | undefined;
1485
+ backgroundColor?: string | number | MotionValue<any> | undefined;
1486
+ backgroundImage?: string | number | MotionValue<any> | undefined;
1487
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
1488
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
1489
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
1490
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
1491
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
1492
+ backgroundSize?: string | number | MotionValue<any> | undefined;
1493
+ baselineShift?: string | number | MotionValue<any> | undefined;
1494
+ baselineSource?: string | number | MotionValue<any> | undefined;
1495
+ blockSize?: string | number | MotionValue<any> | undefined;
1496
+ border?: string | number | MotionValue<any> | undefined;
1497
+ borderBlock?: string | number | MotionValue<any> | undefined;
1498
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
1499
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
1500
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
1501
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
1502
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
1503
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
1504
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
1505
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
1506
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
1507
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
1508
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
1509
+ borderBottom?: string | number | MotionValue<any> | undefined;
1510
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
1511
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
1512
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
1513
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
1514
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
1515
+ borderCollapse?: string | number | MotionValue<any> | undefined;
1516
+ borderColor?: string | number | MotionValue<any> | undefined;
1517
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
1518
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
1519
+ borderImage?: string | number | MotionValue<any> | undefined;
1520
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
1521
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
1522
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
1523
+ borderImageSource?: string | number | MotionValue<any> | undefined;
1524
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
1525
+ borderInline?: string | number | MotionValue<any> | undefined;
1526
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
1527
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
1528
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
1529
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
1530
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
1531
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
1532
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
1533
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
1534
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
1535
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
1536
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
1537
+ borderLeft?: string | number | MotionValue<any> | undefined;
1538
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
1539
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
1540
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
1541
+ borderRadius?: string | number | MotionValue<any> | undefined;
1542
+ borderRight?: string | number | MotionValue<any> | undefined;
1543
+ borderRightColor?: string | number | MotionValue<any> | undefined;
1544
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
1545
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
1546
+ borderSpacing?: string | number | MotionValue<any> | undefined;
1547
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
1548
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
1549
+ borderStyle?: string | number | MotionValue<any> | undefined;
1550
+ borderTop?: string | number | MotionValue<any> | undefined;
1551
+ borderTopColor?: string | number | MotionValue<any> | undefined;
1552
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
1553
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
1554
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
1555
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
1556
+ borderWidth?: string | number | MotionValue<any> | undefined;
1557
+ bottom?: string | number | MotionValue<any> | undefined;
1558
+ boxShadow?: string | number | MotionValue<any> | undefined;
1559
+ boxSizing?: string | number | MotionValue<any> | undefined;
1560
+ breakAfter?: string | number | MotionValue<any> | undefined;
1561
+ breakBefore?: string | number | MotionValue<any> | undefined;
1562
+ breakInside?: string | number | MotionValue<any> | undefined;
1563
+ captionSide?: string | number | MotionValue<any> | undefined;
1564
+ caretColor?: string | number | MotionValue<any> | undefined;
1565
+ clear?: string | number | MotionValue<any> | undefined;
1566
+ clip?: string | number | MotionValue<any> | undefined;
1567
+ clipPath?: string | number | MotionValue<any> | undefined;
1568
+ clipRule?: string | number | MotionValue<any> | undefined;
1569
+ color?: string | number | MotionValue<any> | undefined;
1570
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
1571
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
1572
+ colorScheme?: string | number | MotionValue<any> | undefined;
1573
+ columnCount?: string | number | MotionValue<any> | undefined;
1574
+ columnFill?: string | number | MotionValue<any> | undefined;
1575
+ columnGap?: string | number | MotionValue<any> | undefined;
1576
+ columnRule?: string | number | MotionValue<any> | undefined;
1577
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
1578
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
1579
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
1580
+ columnSpan?: string | number | MotionValue<any> | undefined;
1581
+ columnWidth?: string | number | MotionValue<any> | undefined;
1582
+ columns?: string | number | MotionValue<any> | undefined;
1583
+ contain?: string | number | MotionValue<any> | undefined;
1584
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
1585
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
1586
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
1587
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
1588
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
1589
+ container?: string | number | MotionValue<any> | undefined;
1590
+ containerName?: string | number | MotionValue<any> | undefined;
1591
+ containerType?: string | number | MotionValue<any> | undefined;
1592
+ content?: string | number | MotionValue<any> | undefined;
1593
+ contentVisibility?: string | number | MotionValue<any> | undefined;
1594
+ counterIncrement?: string | number | MotionValue<any> | undefined;
1595
+ counterReset?: string | number | MotionValue<any> | undefined;
1596
+ counterSet?: string | number | MotionValue<any> | undefined;
1597
+ cssFloat?: string | number | MotionValue<any> | undefined;
1598
+ cssText?: string | number | MotionValue<any> | undefined;
1599
+ cursor?: string | number | MotionValue<any> | undefined;
1600
+ cx?: string | number | MotionValue<any> | undefined;
1601
+ cy?: string | number | MotionValue<any> | undefined;
1602
+ d?: string | number | MotionValue<any> | undefined;
1603
+ direction?: string | number | MotionValue<any> | undefined;
1604
+ display?: string | number | MotionValue<any> | undefined;
1605
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
1606
+ emptyCells?: string | number | MotionValue<any> | undefined;
1607
+ fill?: string | number | MotionValue<any> | undefined;
1608
+ fillOpacity?: string | number | MotionValue<any> | undefined;
1609
+ fillRule?: string | number | MotionValue<any> | undefined;
1610
+ filter?: string | number | MotionValue<any> | undefined;
1611
+ flex?: string | number | MotionValue<any> | undefined;
1612
+ flexBasis?: string | number | MotionValue<any> | undefined;
1613
+ flexDirection?: string | number | MotionValue<any> | undefined;
1614
+ flexFlow?: string | number | MotionValue<any> | undefined;
1615
+ flexGrow?: string | number | MotionValue<any> | undefined;
1616
+ flexShrink?: string | number | MotionValue<any> | undefined;
1617
+ flexWrap?: string | number | MotionValue<any> | undefined;
1618
+ float?: string | number | MotionValue<any> | undefined;
1619
+ floodColor?: string | number | MotionValue<any> | undefined;
1620
+ floodOpacity?: string | number | MotionValue<any> | undefined;
1621
+ font?: string | number | MotionValue<any> | undefined;
1622
+ fontFamily?: string | number | MotionValue<any> | undefined;
1623
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
1624
+ fontKerning?: string | number | MotionValue<any> | undefined;
1625
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
1626
+ fontPalette?: string | number | MotionValue<any> | undefined;
1627
+ fontSize?: string | number | MotionValue<any> | undefined;
1628
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
1629
+ fontStretch?: string | number | MotionValue<any> | undefined;
1630
+ fontStyle?: string | number | MotionValue<any> | undefined;
1631
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
1632
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
1633
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
1634
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
1635
+ fontVariant?: string | number | MotionValue<any> | undefined;
1636
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
1637
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
1638
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
1639
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
1640
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
1641
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
1642
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
1643
+ fontWeight?: string | number | MotionValue<any> | undefined;
1644
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
1645
+ gap?: string | number | MotionValue<any> | undefined;
1646
+ grid?: string | number | MotionValue<any> | undefined;
1647
+ gridArea?: string | number | MotionValue<any> | undefined;
1648
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
1649
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
1650
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
1651
+ gridColumn?: string | number | MotionValue<any> | undefined;
1652
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
1653
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
1654
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
1655
+ gridGap?: string | number | MotionValue<any> | undefined;
1656
+ gridRow?: string | number | MotionValue<any> | undefined;
1657
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
1658
+ gridRowGap?: string | number | MotionValue<any> | undefined;
1659
+ gridRowStart?: string | number | MotionValue<any> | undefined;
1660
+ gridTemplate?: string | number | MotionValue<any> | undefined;
1661
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
1662
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
1663
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
1664
+ height?: string | number | MotionValue<any> | undefined;
1665
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
1666
+ hyphens?: string | number | MotionValue<any> | undefined;
1667
+ imageOrientation?: string | number | MotionValue<any> | undefined;
1668
+ imageRendering?: string | number | MotionValue<any> | undefined;
1669
+ inlineSize?: string | number | MotionValue<any> | undefined;
1670
+ inset?: string | number | MotionValue<any> | undefined;
1671
+ insetBlock?: string | number | MotionValue<any> | undefined;
1672
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
1673
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
1674
+ insetInline?: string | number | MotionValue<any> | undefined;
1675
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
1676
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
1677
+ isolation?: string | number | MotionValue<any> | undefined;
1678
+ justifyContent?: string | number | MotionValue<any> | undefined;
1679
+ justifyItems?: string | number | MotionValue<any> | undefined;
1680
+ justifySelf?: string | number | MotionValue<any> | undefined;
1681
+ left?: string | number | MotionValue<any> | undefined;
1682
+ readonly length?: string | number | MotionValue<any> | undefined;
1683
+ letterSpacing?: string | number | MotionValue<any> | undefined;
1684
+ lightingColor?: string | number | MotionValue<any> | undefined;
1685
+ lineBreak?: string | number | MotionValue<any> | undefined;
1686
+ lineHeight?: string | number | MotionValue<any> | undefined;
1687
+ listStyle?: string | number | MotionValue<any> | undefined;
1688
+ listStyleImage?: string | number | MotionValue<any> | undefined;
1689
+ listStylePosition?: string | number | MotionValue<any> | undefined;
1690
+ listStyleType?: string | number | MotionValue<any> | undefined;
1691
+ margin?: string | number | MotionValue<any> | undefined;
1692
+ marginBlock?: string | number | MotionValue<any> | undefined;
1693
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
1694
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
1695
+ marginBottom?: string | number | MotionValue<any> | undefined;
1696
+ marginInline?: string | number | MotionValue<any> | undefined;
1697
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
1698
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
1699
+ marginLeft?: string | number | MotionValue<any> | undefined;
1700
+ marginRight?: string | number | MotionValue<any> | undefined;
1701
+ marginTop?: string | number | MotionValue<any> | undefined;
1702
+ marker?: string | number | MotionValue<any> | undefined;
1703
+ markerEnd?: string | number | MotionValue<any> | undefined;
1704
+ markerMid?: string | number | MotionValue<any> | undefined;
1705
+ markerStart?: string | number | MotionValue<any> | undefined;
1706
+ mask?: string | number | MotionValue<any> | undefined;
1707
+ maskClip?: string | number | MotionValue<any> | undefined;
1708
+ maskComposite?: string | number | MotionValue<any> | undefined;
1709
+ maskImage?: string | number | MotionValue<any> | undefined;
1710
+ maskMode?: string | number | MotionValue<any> | undefined;
1711
+ maskOrigin?: string | number | MotionValue<any> | undefined;
1712
+ maskPosition?: string | number | MotionValue<any> | undefined;
1713
+ maskRepeat?: string | number | MotionValue<any> | undefined;
1714
+ maskSize?: string | number | MotionValue<any> | undefined;
1715
+ maskType?: string | number | MotionValue<any> | undefined;
1716
+ mathDepth?: string | number | MotionValue<any> | undefined;
1717
+ mathStyle?: string | number | MotionValue<any> | undefined;
1718
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
1719
+ maxHeight?: string | number | MotionValue<any> | undefined;
1720
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
1721
+ maxWidth?: string | number | MotionValue<any> | undefined;
1722
+ minBlockSize?: string | number | MotionValue<any> | undefined;
1723
+ minHeight?: string | number | MotionValue<any> | undefined;
1724
+ minInlineSize?: string | number | MotionValue<any> | undefined;
1725
+ minWidth?: string | number | MotionValue<any> | undefined;
1726
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
1727
+ objectFit?: string | number | MotionValue<any> | undefined;
1728
+ objectPosition?: string | number | MotionValue<any> | undefined;
1729
+ offset?: string | number | MotionValue<any> | undefined;
1730
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
1731
+ offsetDistance?: string | number | MotionValue<any> | undefined;
1732
+ offsetPath?: string | number | MotionValue<any> | undefined;
1733
+ offsetPosition?: string | number | MotionValue<any> | undefined;
1734
+ offsetRotate?: string | number | MotionValue<any> | undefined;
1735
+ opacity?: string | number | MotionValue<any> | undefined;
1736
+ order?: string | number | MotionValue<any> | undefined;
1737
+ orphans?: string | number | MotionValue<any> | undefined;
1738
+ outline?: string | number | MotionValue<any> | undefined;
1739
+ outlineColor?: string | number | MotionValue<any> | undefined;
1740
+ outlineOffset?: string | number | MotionValue<any> | undefined;
1741
+ outlineStyle?: string | number | MotionValue<any> | undefined;
1742
+ outlineWidth?: string | number | MotionValue<any> | undefined;
1743
+ overflow?: string | number | MotionValue<any> | undefined;
1744
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
1745
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
1746
+ overflowWrap?: string | number | MotionValue<any> | undefined;
1747
+ overflowX?: string | number | MotionValue<any> | undefined;
1748
+ overflowY?: string | number | MotionValue<any> | undefined;
1749
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
1750
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
1751
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
1752
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
1753
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
1754
+ padding?: string | number | MotionValue<any> | undefined;
1755
+ paddingBlock?: string | number | MotionValue<any> | undefined;
1756
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
1757
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
1758
+ paddingBottom?: string | number | MotionValue<any> | undefined;
1759
+ paddingInline?: string | number | MotionValue<any> | undefined;
1760
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
1761
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
1762
+ paddingLeft?: string | number | MotionValue<any> | undefined;
1763
+ paddingRight?: string | number | MotionValue<any> | undefined;
1764
+ paddingTop?: string | number | MotionValue<any> | undefined;
1765
+ page?: string | number | MotionValue<any> | undefined;
1766
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
1767
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
1768
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
1769
+ paintOrder?: string | number | MotionValue<any> | undefined;
1770
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
1771
+ placeContent?: string | number | MotionValue<any> | undefined;
1772
+ placeItems?: string | number | MotionValue<any> | undefined;
1773
+ placeSelf?: string | number | MotionValue<any> | undefined;
1774
+ pointerEvents?: string | number | MotionValue<any> | undefined;
1775
+ position?: string | number | MotionValue<any> | undefined;
1776
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
1777
+ quotes?: string | number | MotionValue<any> | undefined;
1778
+ r?: string | number | MotionValue<any> | undefined;
1779
+ resize?: string | number | MotionValue<any> | undefined;
1780
+ right?: string | number | MotionValue<any> | undefined;
1781
+ rowGap?: string | number | MotionValue<any> | undefined;
1782
+ rubyAlign?: string | number | MotionValue<any> | undefined;
1783
+ rubyPosition?: string | number | MotionValue<any> | undefined;
1784
+ rx?: string | number | MotionValue<any> | undefined;
1785
+ ry?: string | number | MotionValue<any> | undefined;
1786
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
1787
+ scrollMargin?: string | number | MotionValue<any> | undefined;
1788
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
1789
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
1790
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
1791
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
1792
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
1793
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
1794
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
1795
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
1796
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
1797
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
1798
+ scrollPadding?: string | number | MotionValue<any> | undefined;
1799
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
1800
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
1801
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
1802
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
1803
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
1804
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
1805
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
1806
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
1807
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
1808
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
1809
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
1810
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
1811
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
1812
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
1813
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
1814
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
1815
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
1816
+ shapeMargin?: string | number | MotionValue<any> | undefined;
1817
+ shapeOutside?: string | number | MotionValue<any> | undefined;
1818
+ shapeRendering?: string | number | MotionValue<any> | undefined;
1819
+ stopColor?: string | number | MotionValue<any> | undefined;
1820
+ stopOpacity?: string | number | MotionValue<any> | undefined;
1821
+ stroke?: string | number | MotionValue<any> | undefined;
1822
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
1823
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
1824
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
1825
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
1826
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
1827
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
1828
+ strokeWidth?: string | number | MotionValue<any> | undefined;
1829
+ tabSize?: string | number | MotionValue<any> | undefined;
1830
+ tableLayout?: string | number | MotionValue<any> | undefined;
1831
+ textAlign?: string | number | MotionValue<any> | undefined;
1832
+ textAlignLast?: string | number | MotionValue<any> | undefined;
1833
+ textAnchor?: string | number | MotionValue<any> | undefined;
1834
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
1835
+ textDecoration?: string | number | MotionValue<any> | undefined;
1836
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
1837
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
1838
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
1839
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
1840
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
1841
+ textEmphasis?: string | number | MotionValue<any> | undefined;
1842
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
1843
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
1844
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
1845
+ textIndent?: string | number | MotionValue<any> | undefined;
1846
+ textOrientation?: string | number | MotionValue<any> | undefined;
1847
+ textOverflow?: string | number | MotionValue<any> | undefined;
1848
+ textRendering?: string | number | MotionValue<any> | undefined;
1849
+ textShadow?: string | number | MotionValue<any> | undefined;
1850
+ textTransform?: string | number | MotionValue<any> | undefined;
1851
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
1852
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
1853
+ textWrap?: string | number | MotionValue<any> | undefined;
1854
+ textWrapMode?: string | number | MotionValue<any> | undefined;
1855
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
1856
+ top?: string | number | MotionValue<any> | undefined;
1857
+ touchAction?: string | number | MotionValue<any> | undefined;
1858
+ transform?: string | number | MotionValue<any> | undefined;
1859
+ transformBox?: string | number | MotionValue<any> | undefined;
1860
+ transformOrigin?: string | number | MotionValue<any> | undefined;
1861
+ transformStyle?: string | number | MotionValue<any> | undefined;
1862
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
1863
+ transitionDelay?: string | number | MotionValue<any> | undefined;
1864
+ transitionDuration?: string | number | MotionValue<any> | undefined;
1865
+ transitionProperty?: string | number | MotionValue<any> | undefined;
1866
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
1867
+ translate?: string | number | MotionValue<any> | undefined;
1868
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
1869
+ userSelect?: string | number | MotionValue<any> | undefined;
1870
+ vectorEffect?: string | number | MotionValue<any> | undefined;
1871
+ verticalAlign?: string | number | MotionValue<any> | undefined;
1872
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
1873
+ visibility?: string | number | MotionValue<any> | undefined;
1874
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
1875
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
1876
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
1877
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
1878
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
1879
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
1880
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
1881
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
1882
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
1883
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
1884
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
1885
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
1886
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
1887
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
1888
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
1889
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
1890
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
1891
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
1892
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
1893
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
1894
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
1895
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
1896
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
1897
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
1898
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
1899
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
1900
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
1901
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
1902
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
1903
+ webkitFilter?: string | number | MotionValue<any> | undefined;
1904
+ webkitFlex?: string | number | MotionValue<any> | undefined;
1905
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
1906
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
1907
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
1908
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
1909
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
1910
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
1911
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
1912
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
1913
+ webkitMask?: string | number | MotionValue<any> | undefined;
1914
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
1915
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
1916
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
1917
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
1918
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
1919
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
1920
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
1921
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
1922
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
1923
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
1924
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
1925
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
1926
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
1927
+ webkitOrder?: string | number | MotionValue<any> | undefined;
1928
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
1929
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
1930
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
1931
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
1932
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
1933
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
1934
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
1935
+ webkitTransform?: string | number | MotionValue<any> | undefined;
1936
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
1937
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
1938
+ webkitTransition?: string | number | MotionValue<any> | undefined;
1939
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
1940
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
1941
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
1942
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
1943
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
1944
+ whiteSpace?: string | number | MotionValue<any> | undefined;
1945
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
1946
+ widows?: string | number | MotionValue<any> | undefined;
1947
+ width?: string | number | MotionValue<any> | undefined;
1948
+ willChange?: string | number | MotionValue<any> | undefined;
1949
+ wordBreak?: string | number | MotionValue<any> | undefined;
1950
+ wordSpacing?: string | number | MotionValue<any> | undefined;
1951
+ wordWrap?: string | number | MotionValue<any> | undefined;
1952
+ writingMode?: string | number | MotionValue<any> | undefined;
1953
+ zIndex?: string | number | MotionValue<any> | undefined;
1954
+ zoom?: string | number | MotionValue<any> | undefined;
1955
+ accentHeight?: string | number | MotionValue<any> | undefined;
1956
+ accumulate?: string | number | MotionValue<any> | undefined;
1957
+ additive?: string | number | MotionValue<any> | undefined;
1958
+ allowReorder?: string | number | MotionValue<any> | undefined;
1959
+ alphabetic?: string | number | MotionValue<any> | undefined;
1960
+ amplitude?: string | number | MotionValue<any> | undefined;
1961
+ arabicForm?: string | number | MotionValue<any> | undefined;
1962
+ ascent?: string | number | MotionValue<any> | undefined;
1963
+ attributeName?: string | number | MotionValue<any> | undefined;
1964
+ attributeType?: string | number | MotionValue<any> | undefined;
1965
+ autoReverse?: string | number | MotionValue<any> | undefined;
1966
+ azimuth?: string | number | MotionValue<any> | undefined;
1967
+ baseFrequency?: string | number | MotionValue<any> | undefined;
1968
+ baseProfile?: string | number | MotionValue<any> | undefined;
1969
+ bbox?: string | number | MotionValue<any> | undefined;
1970
+ begin?: string | number | MotionValue<any> | undefined;
1971
+ bias?: string | number | MotionValue<any> | undefined;
1972
+ by?: string | number | MotionValue<any> | undefined;
1973
+ calcMode?: string | number | MotionValue<any> | undefined;
1974
+ capHeight?: string | number | MotionValue<any> | undefined;
1975
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
1976
+ colorProfile?: string | number | MotionValue<any> | undefined;
1977
+ colorRendering?: string | number | MotionValue<any> | undefined;
1978
+ contentScriptType?: string | number | MotionValue<any> | undefined;
1979
+ contentStyleType?: string | number | MotionValue<any> | undefined;
1980
+ decelerate?: string | number | MotionValue<any> | undefined;
1981
+ descent?: string | number | MotionValue<any> | undefined;
1982
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
1983
+ divisor?: string | number | MotionValue<any> | undefined;
1984
+ dur?: string | number | MotionValue<any> | undefined;
1985
+ dx?: string | number | MotionValue<any> | undefined;
1986
+ dy?: string | number | MotionValue<any> | undefined;
1987
+ edgeMode?: string | number | MotionValue<any> | undefined;
1988
+ elevation?: string | number | MotionValue<any> | undefined;
1989
+ enableBackground?: string | number | MotionValue<any> | undefined;
1990
+ end?: string | number | MotionValue<any> | undefined;
1991
+ exponent?: string | number | MotionValue<any> | undefined;
1992
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
1993
+ filterRes?: string | number | MotionValue<any> | undefined;
1994
+ filterUnits?: string | number | MotionValue<any> | undefined;
1995
+ focusable?: string | number | MotionValue<any> | undefined;
1996
+ format?: string | number | MotionValue<any> | undefined;
1997
+ fr?: string | number | MotionValue<any> | undefined;
1998
+ fx?: string | number | MotionValue<any> | undefined;
1999
+ fy?: string | number | MotionValue<any> | undefined;
2000
+ g1?: string | number | MotionValue<any> | undefined;
2001
+ g2?: string | number | MotionValue<any> | undefined;
2002
+ glyphName?: string | number | MotionValue<any> | undefined;
2003
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
2004
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
2005
+ glyphRef?: string | number | MotionValue<any> | undefined;
2006
+ gradientTransform?: string | number | MotionValue<any> | undefined;
2007
+ gradientUnits?: string | number | MotionValue<any> | undefined;
2008
+ hanging?: string | number | MotionValue<any> | undefined;
2009
+ horizAdvX?: string | number | MotionValue<any> | undefined;
2010
+ horizOriginX?: string | number | MotionValue<any> | undefined;
2011
+ href?: string | number | MotionValue<any> | undefined;
2012
+ ideographic?: string | number | MotionValue<any> | undefined;
2013
+ in2?: string | number | MotionValue<any> | undefined;
2014
+ in?: string | number | MotionValue<any> | undefined;
2015
+ intercept?: string | number | MotionValue<any> | undefined;
2016
+ k1?: string | number | MotionValue<any> | undefined;
2017
+ k2?: string | number | MotionValue<any> | undefined;
2018
+ k3?: string | number | MotionValue<any> | undefined;
2019
+ k4?: string | number | MotionValue<any> | undefined;
2020
+ k?: string | number | MotionValue<any> | undefined;
2021
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
2022
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
2023
+ kerning?: string | number | MotionValue<any> | undefined;
2024
+ keyPoints?: string | number | MotionValue<any> | undefined;
2025
+ keySplines?: string | number | MotionValue<any> | undefined;
2026
+ keyTimes?: string | number | MotionValue<any> | undefined;
2027
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
2028
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
2029
+ local?: string | number | MotionValue<any> | undefined;
2030
+ markerHeight?: string | number | MotionValue<any> | undefined;
2031
+ markerUnits?: string | number | MotionValue<any> | undefined;
2032
+ markerWidth?: string | number | MotionValue<any> | undefined;
2033
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
2034
+ maskUnits?: string | number | MotionValue<any> | undefined;
2035
+ mathematical?: string | number | MotionValue<any> | undefined;
2036
+ mode?: string | number | MotionValue<any> | undefined;
2037
+ numOctaves?: string | number | MotionValue<any> | undefined;
2038
+ operator?: string | number | MotionValue<any> | undefined;
2039
+ orient?: string | number | MotionValue<any> | undefined;
2040
+ orientation?: string | number | MotionValue<any> | undefined;
2041
+ origin?: string | number | MotionValue<any> | undefined;
2042
+ overlinePosition?: string | number | MotionValue<any> | undefined;
2043
+ overlineThickness?: string | number | MotionValue<any> | undefined;
2044
+ panose1?: string | number | MotionValue<any> | undefined;
2045
+ path?: string | number | MotionValue<any> | undefined;
2046
+ pathLength?: string | number | MotionValue<any> | undefined;
2047
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
2048
+ patternTransform?: string | number | MotionValue<any> | undefined;
2049
+ patternUnits?: string | number | MotionValue<any> | undefined;
2050
+ points?: string | number | MotionValue<any> | undefined;
2051
+ pointsAtX?: string | number | MotionValue<any> | undefined;
2052
+ pointsAtY?: string | number | MotionValue<any> | undefined;
2053
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
2054
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
2055
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
2056
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
2057
+ radius?: string | number | MotionValue<any> | undefined;
2058
+ refX?: string | number | MotionValue<any> | undefined;
2059
+ refY?: string | number | MotionValue<any> | undefined;
2060
+ renderingIntent?: string | number | MotionValue<any> | undefined;
2061
+ repeatCount?: string | number | MotionValue<any> | undefined;
2062
+ repeatDur?: string | number | MotionValue<any> | undefined;
2063
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
2064
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
2065
+ restart?: string | number | MotionValue<any> | undefined;
2066
+ result?: string | number | MotionValue<any> | undefined;
2067
+ seed?: string | number | MotionValue<any> | undefined;
2068
+ slope?: string | number | MotionValue<any> | undefined;
2069
+ spacing?: string | number | MotionValue<any> | undefined;
2070
+ specularConstant?: string | number | MotionValue<any> | undefined;
2071
+ specularExponent?: string | number | MotionValue<any> | undefined;
2072
+ speed?: string | number | MotionValue<any> | undefined;
2073
+ spreadMethod?: string | number | MotionValue<any> | undefined;
2074
+ startOffset?: string | number | MotionValue<any> | undefined;
2075
+ stdDeviation?: string | number | MotionValue<any> | undefined;
2076
+ stemh?: string | number | MotionValue<any> | undefined;
2077
+ stemv?: string | number | MotionValue<any> | undefined;
2078
+ stitchTiles?: string | number | MotionValue<any> | undefined;
2079
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
2080
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
2081
+ surfaceScale?: string | number | MotionValue<any> | undefined;
2082
+ systemLanguage?: string | number | MotionValue<any> | undefined;
2083
+ tableValues?: string | number | MotionValue<any> | undefined;
2084
+ targetX?: string | number | MotionValue<any> | undefined;
2085
+ targetY?: string | number | MotionValue<any> | undefined;
2086
+ textLength?: string | number | MotionValue<any> | undefined;
2087
+ to?: string | number | MotionValue<any> | undefined;
2088
+ u1?: string | number | MotionValue<any> | undefined;
2089
+ u2?: string | number | MotionValue<any> | undefined;
2090
+ underlinePosition?: string | number | MotionValue<any> | undefined;
2091
+ underlineThickness?: string | number | MotionValue<any> | undefined;
2092
+ unicode?: string | number | MotionValue<any> | undefined;
2093
+ unicodeRange?: string | number | MotionValue<any> | undefined;
2094
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
2095
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
2096
+ values?: string | number | MotionValue<any> | undefined;
2097
+ version?: string | number | MotionValue<any> | undefined;
2098
+ vertAdvY?: string | number | MotionValue<any> | undefined;
2099
+ vertOriginX?: string | number | MotionValue<any> | undefined;
2100
+ vertOriginY?: string | number | MotionValue<any> | undefined;
2101
+ vHanging?: string | number | MotionValue<any> | undefined;
2102
+ vIdeographic?: string | number | MotionValue<any> | undefined;
2103
+ viewBox?: string | number | MotionValue<any> | undefined;
2104
+ viewTarget?: string | number | MotionValue<any> | undefined;
2105
+ vMathematical?: string | number | MotionValue<any> | undefined;
2106
+ widths?: string | number | MotionValue<any> | undefined;
2107
+ x1?: string | number | MotionValue<any> | undefined;
2108
+ x2?: string | number | MotionValue<any> | undefined;
2109
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
2110
+ xHeight?: string | number | MotionValue<any> | undefined;
2111
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
2112
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
2113
+ xlinkHref?: string | number | MotionValue<any> | undefined;
2114
+ xlinkRole?: string | number | MotionValue<any> | undefined;
2115
+ xlinkShow?: string | number | MotionValue<any> | undefined;
2116
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
2117
+ xlinkType?: string | number | MotionValue<any> | undefined;
2118
+ xmlBase?: string | number | MotionValue<any> | undefined;
2119
+ xmlLang?: string | number | MotionValue<any> | undefined;
2120
+ xmlns?: string | number | MotionValue<any> | undefined;
2121
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
2122
+ xmlSpace?: string | number | MotionValue<any> | undefined;
2123
+ y1?: string | number | MotionValue<any> | undefined;
2124
+ y2?: string | number | MotionValue<any> | undefined;
2125
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
2126
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
2127
+ pathOffset?: string | number | MotionValue<any> | undefined;
2128
+ pathSpacing?: string | number | MotionValue<any> | undefined;
2129
+ }>;
2130
+ "aria-hidden"?: boolean | undefined;
2131
+ "aria-posinset"?: number | undefined;
2132
+ "aria-setsize"?: number | undefined;
2133
+ }>;
8
2134
  } | null : {
9
2135
  offset: MotionValue<number>;
10
- } | null, provideTickerItemContext: (contextValue: {
2136
+ bounds: Ref<{
2137
+ start: number;
2138
+ end: number;
2139
+ }>;
2140
+ projection: MotionValue<number>;
2141
+ itemIndex: Ref<number>;
2142
+ cloneIndex: Ref<number | undefined>;
2143
+ props: ComputedRef<{
2144
+ "class": string;
2145
+ "style": Partial<{
2146
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
2147
+ string?: string | number | MotionValue<any> | undefined;
2148
+ transition?: string | number | MotionValue<any> | undefined;
2149
+ x?: string | number | MotionValue<any> | undefined;
2150
+ y?: string | number | MotionValue<any> | undefined;
2151
+ z?: string | number | MotionValue<any> | undefined;
2152
+ translateX?: string | number | MotionValue<any> | undefined;
2153
+ translateY?: string | number | MotionValue<any> | undefined;
2154
+ translateZ?: string | number | MotionValue<any> | undefined;
2155
+ rotate?: string | number | MotionValue<any> | undefined;
2156
+ rotateX?: string | number | MotionValue<any> | undefined;
2157
+ rotateY?: string | number | MotionValue<any> | undefined;
2158
+ rotateZ?: string | number | MotionValue<any> | undefined;
2159
+ scale?: string | number | MotionValue<any> | undefined;
2160
+ scaleX?: string | number | MotionValue<any> | undefined;
2161
+ scaleY?: string | number | MotionValue<any> | undefined;
2162
+ scaleZ?: string | number | MotionValue<any> | undefined;
2163
+ skew?: string | number | MotionValue<any> | undefined;
2164
+ skewX?: string | number | MotionValue<any> | undefined;
2165
+ skewY?: string | number | MotionValue<any> | undefined;
2166
+ originX?: string | number | MotionValue<any> | undefined;
2167
+ originY?: string | number | MotionValue<any> | undefined;
2168
+ originZ?: string | number | MotionValue<any> | undefined;
2169
+ perspective?: string | number | MotionValue<any> | undefined;
2170
+ transformPerspective?: string | number | MotionValue<any> | undefined;
2171
+ accentColor?: string | number | MotionValue<any> | undefined;
2172
+ alignContent?: string | number | MotionValue<any> | undefined;
2173
+ alignItems?: string | number | MotionValue<any> | undefined;
2174
+ alignSelf?: string | number | MotionValue<any> | undefined;
2175
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
2176
+ all?: string | number | MotionValue<any> | undefined;
2177
+ animation?: string | number | MotionValue<any> | undefined;
2178
+ animationComposition?: string | number | MotionValue<any> | undefined;
2179
+ animationDelay?: string | number | MotionValue<any> | undefined;
2180
+ animationDirection?: string | number | MotionValue<any> | undefined;
2181
+ animationDuration?: string | number | MotionValue<any> | undefined;
2182
+ animationFillMode?: string | number | MotionValue<any> | undefined;
2183
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
2184
+ animationName?: string | number | MotionValue<any> | undefined;
2185
+ animationPlayState?: string | number | MotionValue<any> | undefined;
2186
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
2187
+ appearance?: string | number | MotionValue<any> | undefined;
2188
+ aspectRatio?: string | number | MotionValue<any> | undefined;
2189
+ backdropFilter?: string | number | MotionValue<any> | undefined;
2190
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
2191
+ background?: string | number | MotionValue<any> | undefined;
2192
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
2193
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
2194
+ backgroundClip?: string | number | MotionValue<any> | undefined;
2195
+ backgroundColor?: string | number | MotionValue<any> | undefined;
2196
+ backgroundImage?: string | number | MotionValue<any> | undefined;
2197
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
2198
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
2199
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
2200
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
2201
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
2202
+ backgroundSize?: string | number | MotionValue<any> | undefined;
2203
+ baselineShift?: string | number | MotionValue<any> | undefined;
2204
+ baselineSource?: string | number | MotionValue<any> | undefined;
2205
+ blockSize?: string | number | MotionValue<any> | undefined;
2206
+ border?: string | number | MotionValue<any> | undefined;
2207
+ borderBlock?: string | number | MotionValue<any> | undefined;
2208
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
2209
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
2210
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
2211
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
2212
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
2213
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
2214
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
2215
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
2216
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
2217
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
2218
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
2219
+ borderBottom?: string | number | MotionValue<any> | undefined;
2220
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
2221
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
2222
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
2223
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
2224
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
2225
+ borderCollapse?: string | number | MotionValue<any> | undefined;
2226
+ borderColor?: string | number | MotionValue<any> | undefined;
2227
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
2228
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
2229
+ borderImage?: string | number | MotionValue<any> | undefined;
2230
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
2231
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
2232
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
2233
+ borderImageSource?: string | number | MotionValue<any> | undefined;
2234
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
2235
+ borderInline?: string | number | MotionValue<any> | undefined;
2236
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
2237
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
2238
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
2239
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
2240
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
2241
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
2242
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
2243
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
2244
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
2245
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
2246
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
2247
+ borderLeft?: string | number | MotionValue<any> | undefined;
2248
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
2249
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
2250
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
2251
+ borderRadius?: string | number | MotionValue<any> | undefined;
2252
+ borderRight?: string | number | MotionValue<any> | undefined;
2253
+ borderRightColor?: string | number | MotionValue<any> | undefined;
2254
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
2255
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
2256
+ borderSpacing?: string | number | MotionValue<any> | undefined;
2257
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
2258
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
2259
+ borderStyle?: string | number | MotionValue<any> | undefined;
2260
+ borderTop?: string | number | MotionValue<any> | undefined;
2261
+ borderTopColor?: string | number | MotionValue<any> | undefined;
2262
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
2263
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
2264
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
2265
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
2266
+ borderWidth?: string | number | MotionValue<any> | undefined;
2267
+ bottom?: string | number | MotionValue<any> | undefined;
2268
+ boxShadow?: string | number | MotionValue<any> | undefined;
2269
+ boxSizing?: string | number | MotionValue<any> | undefined;
2270
+ breakAfter?: string | number | MotionValue<any> | undefined;
2271
+ breakBefore?: string | number | MotionValue<any> | undefined;
2272
+ breakInside?: string | number | MotionValue<any> | undefined;
2273
+ captionSide?: string | number | MotionValue<any> | undefined;
2274
+ caretColor?: string | number | MotionValue<any> | undefined;
2275
+ clear?: string | number | MotionValue<any> | undefined;
2276
+ clip?: string | number | MotionValue<any> | undefined;
2277
+ clipPath?: string | number | MotionValue<any> | undefined;
2278
+ clipRule?: string | number | MotionValue<any> | undefined;
2279
+ color?: string | number | MotionValue<any> | undefined;
2280
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
2281
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
2282
+ colorScheme?: string | number | MotionValue<any> | undefined;
2283
+ columnCount?: string | number | MotionValue<any> | undefined;
2284
+ columnFill?: string | number | MotionValue<any> | undefined;
2285
+ columnGap?: string | number | MotionValue<any> | undefined;
2286
+ columnRule?: string | number | MotionValue<any> | undefined;
2287
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
2288
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
2289
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
2290
+ columnSpan?: string | number | MotionValue<any> | undefined;
2291
+ columnWidth?: string | number | MotionValue<any> | undefined;
2292
+ columns?: string | number | MotionValue<any> | undefined;
2293
+ contain?: string | number | MotionValue<any> | undefined;
2294
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
2295
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
2296
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
2297
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
2298
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
2299
+ container?: string | number | MotionValue<any> | undefined;
2300
+ containerName?: string | number | MotionValue<any> | undefined;
2301
+ containerType?: string | number | MotionValue<any> | undefined;
2302
+ content?: string | number | MotionValue<any> | undefined;
2303
+ contentVisibility?: string | number | MotionValue<any> | undefined;
2304
+ counterIncrement?: string | number | MotionValue<any> | undefined;
2305
+ counterReset?: string | number | MotionValue<any> | undefined;
2306
+ counterSet?: string | number | MotionValue<any> | undefined;
2307
+ cssFloat?: string | number | MotionValue<any> | undefined;
2308
+ cssText?: string | number | MotionValue<any> | undefined;
2309
+ cursor?: string | number | MotionValue<any> | undefined;
2310
+ cx?: string | number | MotionValue<any> | undefined;
2311
+ cy?: string | number | MotionValue<any> | undefined;
2312
+ d?: string | number | MotionValue<any> | undefined;
2313
+ direction?: string | number | MotionValue<any> | undefined;
2314
+ display?: string | number | MotionValue<any> | undefined;
2315
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
2316
+ emptyCells?: string | number | MotionValue<any> | undefined;
2317
+ fill?: string | number | MotionValue<any> | undefined;
2318
+ fillOpacity?: string | number | MotionValue<any> | undefined;
2319
+ fillRule?: string | number | MotionValue<any> | undefined;
2320
+ filter?: string | number | MotionValue<any> | undefined;
2321
+ flex?: string | number | MotionValue<any> | undefined;
2322
+ flexBasis?: string | number | MotionValue<any> | undefined;
2323
+ flexDirection?: string | number | MotionValue<any> | undefined;
2324
+ flexFlow?: string | number | MotionValue<any> | undefined;
2325
+ flexGrow?: string | number | MotionValue<any> | undefined;
2326
+ flexShrink?: string | number | MotionValue<any> | undefined;
2327
+ flexWrap?: string | number | MotionValue<any> | undefined;
2328
+ float?: string | number | MotionValue<any> | undefined;
2329
+ floodColor?: string | number | MotionValue<any> | undefined;
2330
+ floodOpacity?: string | number | MotionValue<any> | undefined;
2331
+ font?: string | number | MotionValue<any> | undefined;
2332
+ fontFamily?: string | number | MotionValue<any> | undefined;
2333
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
2334
+ fontKerning?: string | number | MotionValue<any> | undefined;
2335
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
2336
+ fontPalette?: string | number | MotionValue<any> | undefined;
2337
+ fontSize?: string | number | MotionValue<any> | undefined;
2338
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
2339
+ fontStretch?: string | number | MotionValue<any> | undefined;
2340
+ fontStyle?: string | number | MotionValue<any> | undefined;
2341
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
2342
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
2343
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
2344
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
2345
+ fontVariant?: string | number | MotionValue<any> | undefined;
2346
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
2347
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
2348
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
2349
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
2350
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
2351
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
2352
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
2353
+ fontWeight?: string | number | MotionValue<any> | undefined;
2354
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
2355
+ gap?: string | number | MotionValue<any> | undefined;
2356
+ grid?: string | number | MotionValue<any> | undefined;
2357
+ gridArea?: string | number | MotionValue<any> | undefined;
2358
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
2359
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
2360
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
2361
+ gridColumn?: string | number | MotionValue<any> | undefined;
2362
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
2363
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
2364
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
2365
+ gridGap?: string | number | MotionValue<any> | undefined;
2366
+ gridRow?: string | number | MotionValue<any> | undefined;
2367
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
2368
+ gridRowGap?: string | number | MotionValue<any> | undefined;
2369
+ gridRowStart?: string | number | MotionValue<any> | undefined;
2370
+ gridTemplate?: string | number | MotionValue<any> | undefined;
2371
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
2372
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
2373
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
2374
+ height?: string | number | MotionValue<any> | undefined;
2375
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
2376
+ hyphens?: string | number | MotionValue<any> | undefined;
2377
+ imageOrientation?: string | number | MotionValue<any> | undefined;
2378
+ imageRendering?: string | number | MotionValue<any> | undefined;
2379
+ inlineSize?: string | number | MotionValue<any> | undefined;
2380
+ inset?: string | number | MotionValue<any> | undefined;
2381
+ insetBlock?: string | number | MotionValue<any> | undefined;
2382
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
2383
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
2384
+ insetInline?: string | number | MotionValue<any> | undefined;
2385
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
2386
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
2387
+ isolation?: string | number | MotionValue<any> | undefined;
2388
+ justifyContent?: string | number | MotionValue<any> | undefined;
2389
+ justifyItems?: string | number | MotionValue<any> | undefined;
2390
+ justifySelf?: string | number | MotionValue<any> | undefined;
2391
+ left?: string | number | MotionValue<any> | undefined;
2392
+ readonly length?: string | number | MotionValue<any> | undefined;
2393
+ letterSpacing?: string | number | MotionValue<any> | undefined;
2394
+ lightingColor?: string | number | MotionValue<any> | undefined;
2395
+ lineBreak?: string | number | MotionValue<any> | undefined;
2396
+ lineHeight?: string | number | MotionValue<any> | undefined;
2397
+ listStyle?: string | number | MotionValue<any> | undefined;
2398
+ listStyleImage?: string | number | MotionValue<any> | undefined;
2399
+ listStylePosition?: string | number | MotionValue<any> | undefined;
2400
+ listStyleType?: string | number | MotionValue<any> | undefined;
2401
+ margin?: string | number | MotionValue<any> | undefined;
2402
+ marginBlock?: string | number | MotionValue<any> | undefined;
2403
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
2404
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
2405
+ marginBottom?: string | number | MotionValue<any> | undefined;
2406
+ marginInline?: string | number | MotionValue<any> | undefined;
2407
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
2408
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
2409
+ marginLeft?: string | number | MotionValue<any> | undefined;
2410
+ marginRight?: string | number | MotionValue<any> | undefined;
2411
+ marginTop?: string | number | MotionValue<any> | undefined;
2412
+ marker?: string | number | MotionValue<any> | undefined;
2413
+ markerEnd?: string | number | MotionValue<any> | undefined;
2414
+ markerMid?: string | number | MotionValue<any> | undefined;
2415
+ markerStart?: string | number | MotionValue<any> | undefined;
2416
+ mask?: string | number | MotionValue<any> | undefined;
2417
+ maskClip?: string | number | MotionValue<any> | undefined;
2418
+ maskComposite?: string | number | MotionValue<any> | undefined;
2419
+ maskImage?: string | number | MotionValue<any> | undefined;
2420
+ maskMode?: string | number | MotionValue<any> | undefined;
2421
+ maskOrigin?: string | number | MotionValue<any> | undefined;
2422
+ maskPosition?: string | number | MotionValue<any> | undefined;
2423
+ maskRepeat?: string | number | MotionValue<any> | undefined;
2424
+ maskSize?: string | number | MotionValue<any> | undefined;
2425
+ maskType?: string | number | MotionValue<any> | undefined;
2426
+ mathDepth?: string | number | MotionValue<any> | undefined;
2427
+ mathStyle?: string | number | MotionValue<any> | undefined;
2428
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
2429
+ maxHeight?: string | number | MotionValue<any> | undefined;
2430
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
2431
+ maxWidth?: string | number | MotionValue<any> | undefined;
2432
+ minBlockSize?: string | number | MotionValue<any> | undefined;
2433
+ minHeight?: string | number | MotionValue<any> | undefined;
2434
+ minInlineSize?: string | number | MotionValue<any> | undefined;
2435
+ minWidth?: string | number | MotionValue<any> | undefined;
2436
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
2437
+ objectFit?: string | number | MotionValue<any> | undefined;
2438
+ objectPosition?: string | number | MotionValue<any> | undefined;
2439
+ offset?: string | number | MotionValue<any> | undefined;
2440
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
2441
+ offsetDistance?: string | number | MotionValue<any> | undefined;
2442
+ offsetPath?: string | number | MotionValue<any> | undefined;
2443
+ offsetPosition?: string | number | MotionValue<any> | undefined;
2444
+ offsetRotate?: string | number | MotionValue<any> | undefined;
2445
+ opacity?: string | number | MotionValue<any> | undefined;
2446
+ order?: string | number | MotionValue<any> | undefined;
2447
+ orphans?: string | number | MotionValue<any> | undefined;
2448
+ outline?: string | number | MotionValue<any> | undefined;
2449
+ outlineColor?: string | number | MotionValue<any> | undefined;
2450
+ outlineOffset?: string | number | MotionValue<any> | undefined;
2451
+ outlineStyle?: string | number | MotionValue<any> | undefined;
2452
+ outlineWidth?: string | number | MotionValue<any> | undefined;
2453
+ overflow?: string | number | MotionValue<any> | undefined;
2454
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
2455
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
2456
+ overflowWrap?: string | number | MotionValue<any> | undefined;
2457
+ overflowX?: string | number | MotionValue<any> | undefined;
2458
+ overflowY?: string | number | MotionValue<any> | undefined;
2459
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
2460
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
2461
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
2462
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
2463
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
2464
+ padding?: string | number | MotionValue<any> | undefined;
2465
+ paddingBlock?: string | number | MotionValue<any> | undefined;
2466
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
2467
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
2468
+ paddingBottom?: string | number | MotionValue<any> | undefined;
2469
+ paddingInline?: string | number | MotionValue<any> | undefined;
2470
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
2471
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
2472
+ paddingLeft?: string | number | MotionValue<any> | undefined;
2473
+ paddingRight?: string | number | MotionValue<any> | undefined;
2474
+ paddingTop?: string | number | MotionValue<any> | undefined;
2475
+ page?: string | number | MotionValue<any> | undefined;
2476
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
2477
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
2478
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
2479
+ paintOrder?: string | number | MotionValue<any> | undefined;
2480
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
2481
+ placeContent?: string | number | MotionValue<any> | undefined;
2482
+ placeItems?: string | number | MotionValue<any> | undefined;
2483
+ placeSelf?: string | number | MotionValue<any> | undefined;
2484
+ pointerEvents?: string | number | MotionValue<any> | undefined;
2485
+ position?: string | number | MotionValue<any> | undefined;
2486
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
2487
+ quotes?: string | number | MotionValue<any> | undefined;
2488
+ r?: string | number | MotionValue<any> | undefined;
2489
+ resize?: string | number | MotionValue<any> | undefined;
2490
+ right?: string | number | MotionValue<any> | undefined;
2491
+ rowGap?: string | number | MotionValue<any> | undefined;
2492
+ rubyAlign?: string | number | MotionValue<any> | undefined;
2493
+ rubyPosition?: string | number | MotionValue<any> | undefined;
2494
+ rx?: string | number | MotionValue<any> | undefined;
2495
+ ry?: string | number | MotionValue<any> | undefined;
2496
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
2497
+ scrollMargin?: string | number | MotionValue<any> | undefined;
2498
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
2499
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
2500
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
2501
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
2502
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
2503
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
2504
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
2505
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
2506
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
2507
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
2508
+ scrollPadding?: string | number | MotionValue<any> | undefined;
2509
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
2510
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
2511
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
2512
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
2513
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
2514
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
2515
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
2516
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
2517
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
2518
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
2519
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
2520
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
2521
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
2522
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
2523
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
2524
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
2525
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
2526
+ shapeMargin?: string | number | MotionValue<any> | undefined;
2527
+ shapeOutside?: string | number | MotionValue<any> | undefined;
2528
+ shapeRendering?: string | number | MotionValue<any> | undefined;
2529
+ stopColor?: string | number | MotionValue<any> | undefined;
2530
+ stopOpacity?: string | number | MotionValue<any> | undefined;
2531
+ stroke?: string | number | MotionValue<any> | undefined;
2532
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
2533
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
2534
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
2535
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
2536
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
2537
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
2538
+ strokeWidth?: string | number | MotionValue<any> | undefined;
2539
+ tabSize?: string | number | MotionValue<any> | undefined;
2540
+ tableLayout?: string | number | MotionValue<any> | undefined;
2541
+ textAlign?: string | number | MotionValue<any> | undefined;
2542
+ textAlignLast?: string | number | MotionValue<any> | undefined;
2543
+ textAnchor?: string | number | MotionValue<any> | undefined;
2544
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
2545
+ textDecoration?: string | number | MotionValue<any> | undefined;
2546
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
2547
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
2548
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
2549
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
2550
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
2551
+ textEmphasis?: string | number | MotionValue<any> | undefined;
2552
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
2553
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
2554
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
2555
+ textIndent?: string | number | MotionValue<any> | undefined;
2556
+ textOrientation?: string | number | MotionValue<any> | undefined;
2557
+ textOverflow?: string | number | MotionValue<any> | undefined;
2558
+ textRendering?: string | number | MotionValue<any> | undefined;
2559
+ textShadow?: string | number | MotionValue<any> | undefined;
2560
+ textTransform?: string | number | MotionValue<any> | undefined;
2561
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
2562
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
2563
+ textWrap?: string | number | MotionValue<any> | undefined;
2564
+ textWrapMode?: string | number | MotionValue<any> | undefined;
2565
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
2566
+ top?: string | number | MotionValue<any> | undefined;
2567
+ touchAction?: string | number | MotionValue<any> | undefined;
2568
+ transform?: string | number | MotionValue<any> | undefined;
2569
+ transformBox?: string | number | MotionValue<any> | undefined;
2570
+ transformOrigin?: string | number | MotionValue<any> | undefined;
2571
+ transformStyle?: string | number | MotionValue<any> | undefined;
2572
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
2573
+ transitionDelay?: string | number | MotionValue<any> | undefined;
2574
+ transitionDuration?: string | number | MotionValue<any> | undefined;
2575
+ transitionProperty?: string | number | MotionValue<any> | undefined;
2576
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
2577
+ translate?: string | number | MotionValue<any> | undefined;
2578
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
2579
+ userSelect?: string | number | MotionValue<any> | undefined;
2580
+ vectorEffect?: string | number | MotionValue<any> | undefined;
2581
+ verticalAlign?: string | number | MotionValue<any> | undefined;
2582
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
2583
+ visibility?: string | number | MotionValue<any> | undefined;
2584
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
2585
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
2586
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
2587
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
2588
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
2589
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
2590
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
2591
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
2592
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
2593
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
2594
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
2595
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
2596
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
2597
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
2598
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
2599
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
2600
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
2601
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
2602
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
2603
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
2604
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
2605
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
2606
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
2607
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
2608
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
2609
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
2610
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
2611
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
2612
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
2613
+ webkitFilter?: string | number | MotionValue<any> | undefined;
2614
+ webkitFlex?: string | number | MotionValue<any> | undefined;
2615
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
2616
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
2617
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
2618
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
2619
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
2620
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
2621
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
2622
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
2623
+ webkitMask?: string | number | MotionValue<any> | undefined;
2624
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
2625
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
2626
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
2627
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
2628
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
2629
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
2630
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
2631
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
2632
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
2633
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
2634
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
2635
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
2636
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
2637
+ webkitOrder?: string | number | MotionValue<any> | undefined;
2638
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
2639
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
2640
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
2641
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
2642
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
2643
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
2644
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
2645
+ webkitTransform?: string | number | MotionValue<any> | undefined;
2646
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
2647
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
2648
+ webkitTransition?: string | number | MotionValue<any> | undefined;
2649
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
2650
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
2651
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
2652
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
2653
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
2654
+ whiteSpace?: string | number | MotionValue<any> | undefined;
2655
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
2656
+ widows?: string | number | MotionValue<any> | undefined;
2657
+ width?: string | number | MotionValue<any> | undefined;
2658
+ willChange?: string | number | MotionValue<any> | undefined;
2659
+ wordBreak?: string | number | MotionValue<any> | undefined;
2660
+ wordSpacing?: string | number | MotionValue<any> | undefined;
2661
+ wordWrap?: string | number | MotionValue<any> | undefined;
2662
+ writingMode?: string | number | MotionValue<any> | undefined;
2663
+ zIndex?: string | number | MotionValue<any> | undefined;
2664
+ zoom?: string | number | MotionValue<any> | undefined;
2665
+ accentHeight?: string | number | MotionValue<any> | undefined;
2666
+ accumulate?: string | number | MotionValue<any> | undefined;
2667
+ additive?: string | number | MotionValue<any> | undefined;
2668
+ allowReorder?: string | number | MotionValue<any> | undefined;
2669
+ alphabetic?: string | number | MotionValue<any> | undefined;
2670
+ amplitude?: string | number | MotionValue<any> | undefined;
2671
+ arabicForm?: string | number | MotionValue<any> | undefined;
2672
+ ascent?: string | number | MotionValue<any> | undefined;
2673
+ attributeName?: string | number | MotionValue<any> | undefined;
2674
+ attributeType?: string | number | MotionValue<any> | undefined;
2675
+ autoReverse?: string | number | MotionValue<any> | undefined;
2676
+ azimuth?: string | number | MotionValue<any> | undefined;
2677
+ baseFrequency?: string | number | MotionValue<any> | undefined;
2678
+ baseProfile?: string | number | MotionValue<any> | undefined;
2679
+ bbox?: string | number | MotionValue<any> | undefined;
2680
+ begin?: string | number | MotionValue<any> | undefined;
2681
+ bias?: string | number | MotionValue<any> | undefined;
2682
+ by?: string | number | MotionValue<any> | undefined;
2683
+ calcMode?: string | number | MotionValue<any> | undefined;
2684
+ capHeight?: string | number | MotionValue<any> | undefined;
2685
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
2686
+ colorProfile?: string | number | MotionValue<any> | undefined;
2687
+ colorRendering?: string | number | MotionValue<any> | undefined;
2688
+ contentScriptType?: string | number | MotionValue<any> | undefined;
2689
+ contentStyleType?: string | number | MotionValue<any> | undefined;
2690
+ decelerate?: string | number | MotionValue<any> | undefined;
2691
+ descent?: string | number | MotionValue<any> | undefined;
2692
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
2693
+ divisor?: string | number | MotionValue<any> | undefined;
2694
+ dur?: string | number | MotionValue<any> | undefined;
2695
+ dx?: string | number | MotionValue<any> | undefined;
2696
+ dy?: string | number | MotionValue<any> | undefined;
2697
+ edgeMode?: string | number | MotionValue<any> | undefined;
2698
+ elevation?: string | number | MotionValue<any> | undefined;
2699
+ enableBackground?: string | number | MotionValue<any> | undefined;
2700
+ end?: string | number | MotionValue<any> | undefined;
2701
+ exponent?: string | number | MotionValue<any> | undefined;
2702
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
2703
+ filterRes?: string | number | MotionValue<any> | undefined;
2704
+ filterUnits?: string | number | MotionValue<any> | undefined;
2705
+ focusable?: string | number | MotionValue<any> | undefined;
2706
+ format?: string | number | MotionValue<any> | undefined;
2707
+ fr?: string | number | MotionValue<any> | undefined;
2708
+ fx?: string | number | MotionValue<any> | undefined;
2709
+ fy?: string | number | MotionValue<any> | undefined;
2710
+ g1?: string | number | MotionValue<any> | undefined;
2711
+ g2?: string | number | MotionValue<any> | undefined;
2712
+ glyphName?: string | number | MotionValue<any> | undefined;
2713
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
2714
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
2715
+ glyphRef?: string | number | MotionValue<any> | undefined;
2716
+ gradientTransform?: string | number | MotionValue<any> | undefined;
2717
+ gradientUnits?: string | number | MotionValue<any> | undefined;
2718
+ hanging?: string | number | MotionValue<any> | undefined;
2719
+ horizAdvX?: string | number | MotionValue<any> | undefined;
2720
+ horizOriginX?: string | number | MotionValue<any> | undefined;
2721
+ href?: string | number | MotionValue<any> | undefined;
2722
+ ideographic?: string | number | MotionValue<any> | undefined;
2723
+ in2?: string | number | MotionValue<any> | undefined;
2724
+ in?: string | number | MotionValue<any> | undefined;
2725
+ intercept?: string | number | MotionValue<any> | undefined;
2726
+ k1?: string | number | MotionValue<any> | undefined;
2727
+ k2?: string | number | MotionValue<any> | undefined;
2728
+ k3?: string | number | MotionValue<any> | undefined;
2729
+ k4?: string | number | MotionValue<any> | undefined;
2730
+ k?: string | number | MotionValue<any> | undefined;
2731
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
2732
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
2733
+ kerning?: string | number | MotionValue<any> | undefined;
2734
+ keyPoints?: string | number | MotionValue<any> | undefined;
2735
+ keySplines?: string | number | MotionValue<any> | undefined;
2736
+ keyTimes?: string | number | MotionValue<any> | undefined;
2737
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
2738
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
2739
+ local?: string | number | MotionValue<any> | undefined;
2740
+ markerHeight?: string | number | MotionValue<any> | undefined;
2741
+ markerUnits?: string | number | MotionValue<any> | undefined;
2742
+ markerWidth?: string | number | MotionValue<any> | undefined;
2743
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
2744
+ maskUnits?: string | number | MotionValue<any> | undefined;
2745
+ mathematical?: string | number | MotionValue<any> | undefined;
2746
+ mode?: string | number | MotionValue<any> | undefined;
2747
+ numOctaves?: string | number | MotionValue<any> | undefined;
2748
+ operator?: string | number | MotionValue<any> | undefined;
2749
+ orient?: string | number | MotionValue<any> | undefined;
2750
+ orientation?: string | number | MotionValue<any> | undefined;
2751
+ origin?: string | number | MotionValue<any> | undefined;
2752
+ overlinePosition?: string | number | MotionValue<any> | undefined;
2753
+ overlineThickness?: string | number | MotionValue<any> | undefined;
2754
+ panose1?: string | number | MotionValue<any> | undefined;
2755
+ path?: string | number | MotionValue<any> | undefined;
2756
+ pathLength?: string | number | MotionValue<any> | undefined;
2757
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
2758
+ patternTransform?: string | number | MotionValue<any> | undefined;
2759
+ patternUnits?: string | number | MotionValue<any> | undefined;
2760
+ points?: string | number | MotionValue<any> | undefined;
2761
+ pointsAtX?: string | number | MotionValue<any> | undefined;
2762
+ pointsAtY?: string | number | MotionValue<any> | undefined;
2763
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
2764
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
2765
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
2766
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
2767
+ radius?: string | number | MotionValue<any> | undefined;
2768
+ refX?: string | number | MotionValue<any> | undefined;
2769
+ refY?: string | number | MotionValue<any> | undefined;
2770
+ renderingIntent?: string | number | MotionValue<any> | undefined;
2771
+ repeatCount?: string | number | MotionValue<any> | undefined;
2772
+ repeatDur?: string | number | MotionValue<any> | undefined;
2773
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
2774
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
2775
+ restart?: string | number | MotionValue<any> | undefined;
2776
+ result?: string | number | MotionValue<any> | undefined;
2777
+ seed?: string | number | MotionValue<any> | undefined;
2778
+ slope?: string | number | MotionValue<any> | undefined;
2779
+ spacing?: string | number | MotionValue<any> | undefined;
2780
+ specularConstant?: string | number | MotionValue<any> | undefined;
2781
+ specularExponent?: string | number | MotionValue<any> | undefined;
2782
+ speed?: string | number | MotionValue<any> | undefined;
2783
+ spreadMethod?: string | number | MotionValue<any> | undefined;
2784
+ startOffset?: string | number | MotionValue<any> | undefined;
2785
+ stdDeviation?: string | number | MotionValue<any> | undefined;
2786
+ stemh?: string | number | MotionValue<any> | undefined;
2787
+ stemv?: string | number | MotionValue<any> | undefined;
2788
+ stitchTiles?: string | number | MotionValue<any> | undefined;
2789
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
2790
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
2791
+ surfaceScale?: string | number | MotionValue<any> | undefined;
2792
+ systemLanguage?: string | number | MotionValue<any> | undefined;
2793
+ tableValues?: string | number | MotionValue<any> | undefined;
2794
+ targetX?: string | number | MotionValue<any> | undefined;
2795
+ targetY?: string | number | MotionValue<any> | undefined;
2796
+ textLength?: string | number | MotionValue<any> | undefined;
2797
+ to?: string | number | MotionValue<any> | undefined;
2798
+ u1?: string | number | MotionValue<any> | undefined;
2799
+ u2?: string | number | MotionValue<any> | undefined;
2800
+ underlinePosition?: string | number | MotionValue<any> | undefined;
2801
+ underlineThickness?: string | number | MotionValue<any> | undefined;
2802
+ unicode?: string | number | MotionValue<any> | undefined;
2803
+ unicodeRange?: string | number | MotionValue<any> | undefined;
2804
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
2805
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
2806
+ values?: string | number | MotionValue<any> | undefined;
2807
+ version?: string | number | MotionValue<any> | undefined;
2808
+ vertAdvY?: string | number | MotionValue<any> | undefined;
2809
+ vertOriginX?: string | number | MotionValue<any> | undefined;
2810
+ vertOriginY?: string | number | MotionValue<any> | undefined;
2811
+ vHanging?: string | number | MotionValue<any> | undefined;
2812
+ vIdeographic?: string | number | MotionValue<any> | undefined;
2813
+ viewBox?: string | number | MotionValue<any> | undefined;
2814
+ viewTarget?: string | number | MotionValue<any> | undefined;
2815
+ vMathematical?: string | number | MotionValue<any> | undefined;
2816
+ widths?: string | number | MotionValue<any> | undefined;
2817
+ x1?: string | number | MotionValue<any> | undefined;
2818
+ x2?: string | number | MotionValue<any> | undefined;
2819
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
2820
+ xHeight?: string | number | MotionValue<any> | undefined;
2821
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
2822
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
2823
+ xlinkHref?: string | number | MotionValue<any> | undefined;
2824
+ xlinkRole?: string | number | MotionValue<any> | undefined;
2825
+ xlinkShow?: string | number | MotionValue<any> | undefined;
2826
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
2827
+ xlinkType?: string | number | MotionValue<any> | undefined;
2828
+ xmlBase?: string | number | MotionValue<any> | undefined;
2829
+ xmlLang?: string | number | MotionValue<any> | undefined;
2830
+ xmlns?: string | number | MotionValue<any> | undefined;
2831
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
2832
+ xmlSpace?: string | number | MotionValue<any> | undefined;
2833
+ y1?: string | number | MotionValue<any> | undefined;
2834
+ y2?: string | number | MotionValue<any> | undefined;
2835
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
2836
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
2837
+ pathOffset?: string | number | MotionValue<any> | undefined;
2838
+ pathSpacing?: string | number | MotionValue<any> | undefined;
2839
+ }>;
2840
+ "aria-hidden"?: boolean | undefined;
2841
+ "aria-posinset"?: number | undefined;
2842
+ "aria-setsize"?: number | undefined;
2843
+ }>;
2844
+ } | null, provideTickerItem: (contextValue: {
11
2845
  offset: MotionValue<number>;
2846
+ bounds: Ref<{
2847
+ start: number;
2848
+ end: number;
2849
+ }>;
2850
+ projection: MotionValue<number>;
2851
+ itemIndex: Ref<number>;
2852
+ cloneIndex: Ref<number | undefined>;
2853
+ props: ComputedRef<{
2854
+ "class": string;
2855
+ "style": Partial<{
2856
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
2857
+ string?: string | number | MotionValue<any> | undefined;
2858
+ transition?: string | number | MotionValue<any> | undefined;
2859
+ x?: string | number | MotionValue<any> | undefined;
2860
+ y?: string | number | MotionValue<any> | undefined;
2861
+ z?: string | number | MotionValue<any> | undefined;
2862
+ translateX?: string | number | MotionValue<any> | undefined;
2863
+ translateY?: string | number | MotionValue<any> | undefined;
2864
+ translateZ?: string | number | MotionValue<any> | undefined;
2865
+ rotate?: string | number | MotionValue<any> | undefined;
2866
+ rotateX?: string | number | MotionValue<any> | undefined;
2867
+ rotateY?: string | number | MotionValue<any> | undefined;
2868
+ rotateZ?: string | number | MotionValue<any> | undefined;
2869
+ scale?: string | number | MotionValue<any> | undefined;
2870
+ scaleX?: string | number | MotionValue<any> | undefined;
2871
+ scaleY?: string | number | MotionValue<any> | undefined;
2872
+ scaleZ?: string | number | MotionValue<any> | undefined;
2873
+ skew?: string | number | MotionValue<any> | undefined;
2874
+ skewX?: string | number | MotionValue<any> | undefined;
2875
+ skewY?: string | number | MotionValue<any> | undefined;
2876
+ originX?: string | number | MotionValue<any> | undefined;
2877
+ originY?: string | number | MotionValue<any> | undefined;
2878
+ originZ?: string | number | MotionValue<any> | undefined;
2879
+ perspective?: string | number | MotionValue<any> | undefined;
2880
+ transformPerspective?: string | number | MotionValue<any> | undefined;
2881
+ accentColor?: string | number | MotionValue<any> | undefined;
2882
+ alignContent?: string | number | MotionValue<any> | undefined;
2883
+ alignItems?: string | number | MotionValue<any> | undefined;
2884
+ alignSelf?: string | number | MotionValue<any> | undefined;
2885
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
2886
+ all?: string | number | MotionValue<any> | undefined;
2887
+ animation?: string | number | MotionValue<any> | undefined;
2888
+ animationComposition?: string | number | MotionValue<any> | undefined;
2889
+ animationDelay?: string | number | MotionValue<any> | undefined;
2890
+ animationDirection?: string | number | MotionValue<any> | undefined;
2891
+ animationDuration?: string | number | MotionValue<any> | undefined;
2892
+ animationFillMode?: string | number | MotionValue<any> | undefined;
2893
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
2894
+ animationName?: string | number | MotionValue<any> | undefined;
2895
+ animationPlayState?: string | number | MotionValue<any> | undefined;
2896
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
2897
+ appearance?: string | number | MotionValue<any> | undefined;
2898
+ aspectRatio?: string | number | MotionValue<any> | undefined;
2899
+ backdropFilter?: string | number | MotionValue<any> | undefined;
2900
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
2901
+ background?: string | number | MotionValue<any> | undefined;
2902
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
2903
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
2904
+ backgroundClip?: string | number | MotionValue<any> | undefined;
2905
+ backgroundColor?: string | number | MotionValue<any> | undefined;
2906
+ backgroundImage?: string | number | MotionValue<any> | undefined;
2907
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
2908
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
2909
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
2910
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
2911
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
2912
+ backgroundSize?: string | number | MotionValue<any> | undefined;
2913
+ baselineShift?: string | number | MotionValue<any> | undefined;
2914
+ baselineSource?: string | number | MotionValue<any> | undefined;
2915
+ blockSize?: string | number | MotionValue<any> | undefined;
2916
+ border?: string | number | MotionValue<any> | undefined;
2917
+ borderBlock?: string | number | MotionValue<any> | undefined;
2918
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
2919
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
2920
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
2921
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
2922
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
2923
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
2924
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
2925
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
2926
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
2927
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
2928
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
2929
+ borderBottom?: string | number | MotionValue<any> | undefined;
2930
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
2931
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
2932
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
2933
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
2934
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
2935
+ borderCollapse?: string | number | MotionValue<any> | undefined;
2936
+ borderColor?: string | number | MotionValue<any> | undefined;
2937
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
2938
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
2939
+ borderImage?: string | number | MotionValue<any> | undefined;
2940
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
2941
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
2942
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
2943
+ borderImageSource?: string | number | MotionValue<any> | undefined;
2944
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
2945
+ borderInline?: string | number | MotionValue<any> | undefined;
2946
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
2947
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
2948
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
2949
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
2950
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
2951
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
2952
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
2953
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
2954
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
2955
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
2956
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
2957
+ borderLeft?: string | number | MotionValue<any> | undefined;
2958
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
2959
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
2960
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
2961
+ borderRadius?: string | number | MotionValue<any> | undefined;
2962
+ borderRight?: string | number | MotionValue<any> | undefined;
2963
+ borderRightColor?: string | number | MotionValue<any> | undefined;
2964
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
2965
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
2966
+ borderSpacing?: string | number | MotionValue<any> | undefined;
2967
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
2968
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
2969
+ borderStyle?: string | number | MotionValue<any> | undefined;
2970
+ borderTop?: string | number | MotionValue<any> | undefined;
2971
+ borderTopColor?: string | number | MotionValue<any> | undefined;
2972
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
2973
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
2974
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
2975
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
2976
+ borderWidth?: string | number | MotionValue<any> | undefined;
2977
+ bottom?: string | number | MotionValue<any> | undefined;
2978
+ boxShadow?: string | number | MotionValue<any> | undefined;
2979
+ boxSizing?: string | number | MotionValue<any> | undefined;
2980
+ breakAfter?: string | number | MotionValue<any> | undefined;
2981
+ breakBefore?: string | number | MotionValue<any> | undefined;
2982
+ breakInside?: string | number | MotionValue<any> | undefined;
2983
+ captionSide?: string | number | MotionValue<any> | undefined;
2984
+ caretColor?: string | number | MotionValue<any> | undefined;
2985
+ clear?: string | number | MotionValue<any> | undefined;
2986
+ clip?: string | number | MotionValue<any> | undefined;
2987
+ clipPath?: string | number | MotionValue<any> | undefined;
2988
+ clipRule?: string | number | MotionValue<any> | undefined;
2989
+ color?: string | number | MotionValue<any> | undefined;
2990
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
2991
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
2992
+ colorScheme?: string | number | MotionValue<any> | undefined;
2993
+ columnCount?: string | number | MotionValue<any> | undefined;
2994
+ columnFill?: string | number | MotionValue<any> | undefined;
2995
+ columnGap?: string | number | MotionValue<any> | undefined;
2996
+ columnRule?: string | number | MotionValue<any> | undefined;
2997
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
2998
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
2999
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
3000
+ columnSpan?: string | number | MotionValue<any> | undefined;
3001
+ columnWidth?: string | number | MotionValue<any> | undefined;
3002
+ columns?: string | number | MotionValue<any> | undefined;
3003
+ contain?: string | number | MotionValue<any> | undefined;
3004
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
3005
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
3006
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
3007
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
3008
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
3009
+ container?: string | number | MotionValue<any> | undefined;
3010
+ containerName?: string | number | MotionValue<any> | undefined;
3011
+ containerType?: string | number | MotionValue<any> | undefined;
3012
+ content?: string | number | MotionValue<any> | undefined;
3013
+ contentVisibility?: string | number | MotionValue<any> | undefined;
3014
+ counterIncrement?: string | number | MotionValue<any> | undefined;
3015
+ counterReset?: string | number | MotionValue<any> | undefined;
3016
+ counterSet?: string | number | MotionValue<any> | undefined;
3017
+ cssFloat?: string | number | MotionValue<any> | undefined;
3018
+ cssText?: string | number | MotionValue<any> | undefined;
3019
+ cursor?: string | number | MotionValue<any> | undefined;
3020
+ cx?: string | number | MotionValue<any> | undefined;
3021
+ cy?: string | number | MotionValue<any> | undefined;
3022
+ d?: string | number | MotionValue<any> | undefined;
3023
+ direction?: string | number | MotionValue<any> | undefined;
3024
+ display?: string | number | MotionValue<any> | undefined;
3025
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
3026
+ emptyCells?: string | number | MotionValue<any> | undefined;
3027
+ fill?: string | number | MotionValue<any> | undefined;
3028
+ fillOpacity?: string | number | MotionValue<any> | undefined;
3029
+ fillRule?: string | number | MotionValue<any> | undefined;
3030
+ filter?: string | number | MotionValue<any> | undefined;
3031
+ flex?: string | number | MotionValue<any> | undefined;
3032
+ flexBasis?: string | number | MotionValue<any> | undefined;
3033
+ flexDirection?: string | number | MotionValue<any> | undefined;
3034
+ flexFlow?: string | number | MotionValue<any> | undefined;
3035
+ flexGrow?: string | number | MotionValue<any> | undefined;
3036
+ flexShrink?: string | number | MotionValue<any> | undefined;
3037
+ flexWrap?: string | number | MotionValue<any> | undefined;
3038
+ float?: string | number | MotionValue<any> | undefined;
3039
+ floodColor?: string | number | MotionValue<any> | undefined;
3040
+ floodOpacity?: string | number | MotionValue<any> | undefined;
3041
+ font?: string | number | MotionValue<any> | undefined;
3042
+ fontFamily?: string | number | MotionValue<any> | undefined;
3043
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
3044
+ fontKerning?: string | number | MotionValue<any> | undefined;
3045
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
3046
+ fontPalette?: string | number | MotionValue<any> | undefined;
3047
+ fontSize?: string | number | MotionValue<any> | undefined;
3048
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
3049
+ fontStretch?: string | number | MotionValue<any> | undefined;
3050
+ fontStyle?: string | number | MotionValue<any> | undefined;
3051
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
3052
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
3053
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
3054
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
3055
+ fontVariant?: string | number | MotionValue<any> | undefined;
3056
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
3057
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
3058
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
3059
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
3060
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
3061
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
3062
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
3063
+ fontWeight?: string | number | MotionValue<any> | undefined;
3064
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
3065
+ gap?: string | number | MotionValue<any> | undefined;
3066
+ grid?: string | number | MotionValue<any> | undefined;
3067
+ gridArea?: string | number | MotionValue<any> | undefined;
3068
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
3069
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
3070
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
3071
+ gridColumn?: string | number | MotionValue<any> | undefined;
3072
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
3073
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
3074
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
3075
+ gridGap?: string | number | MotionValue<any> | undefined;
3076
+ gridRow?: string | number | MotionValue<any> | undefined;
3077
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
3078
+ gridRowGap?: string | number | MotionValue<any> | undefined;
3079
+ gridRowStart?: string | number | MotionValue<any> | undefined;
3080
+ gridTemplate?: string | number | MotionValue<any> | undefined;
3081
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
3082
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
3083
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
3084
+ height?: string | number | MotionValue<any> | undefined;
3085
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
3086
+ hyphens?: string | number | MotionValue<any> | undefined;
3087
+ imageOrientation?: string | number | MotionValue<any> | undefined;
3088
+ imageRendering?: string | number | MotionValue<any> | undefined;
3089
+ inlineSize?: string | number | MotionValue<any> | undefined;
3090
+ inset?: string | number | MotionValue<any> | undefined;
3091
+ insetBlock?: string | number | MotionValue<any> | undefined;
3092
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
3093
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
3094
+ insetInline?: string | number | MotionValue<any> | undefined;
3095
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
3096
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
3097
+ isolation?: string | number | MotionValue<any> | undefined;
3098
+ justifyContent?: string | number | MotionValue<any> | undefined;
3099
+ justifyItems?: string | number | MotionValue<any> | undefined;
3100
+ justifySelf?: string | number | MotionValue<any> | undefined;
3101
+ left?: string | number | MotionValue<any> | undefined;
3102
+ readonly length?: string | number | MotionValue<any> | undefined;
3103
+ letterSpacing?: string | number | MotionValue<any> | undefined;
3104
+ lightingColor?: string | number | MotionValue<any> | undefined;
3105
+ lineBreak?: string | number | MotionValue<any> | undefined;
3106
+ lineHeight?: string | number | MotionValue<any> | undefined;
3107
+ listStyle?: string | number | MotionValue<any> | undefined;
3108
+ listStyleImage?: string | number | MotionValue<any> | undefined;
3109
+ listStylePosition?: string | number | MotionValue<any> | undefined;
3110
+ listStyleType?: string | number | MotionValue<any> | undefined;
3111
+ margin?: string | number | MotionValue<any> | undefined;
3112
+ marginBlock?: string | number | MotionValue<any> | undefined;
3113
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
3114
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
3115
+ marginBottom?: string | number | MotionValue<any> | undefined;
3116
+ marginInline?: string | number | MotionValue<any> | undefined;
3117
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
3118
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
3119
+ marginLeft?: string | number | MotionValue<any> | undefined;
3120
+ marginRight?: string | number | MotionValue<any> | undefined;
3121
+ marginTop?: string | number | MotionValue<any> | undefined;
3122
+ marker?: string | number | MotionValue<any> | undefined;
3123
+ markerEnd?: string | number | MotionValue<any> | undefined;
3124
+ markerMid?: string | number | MotionValue<any> | undefined;
3125
+ markerStart?: string | number | MotionValue<any> | undefined;
3126
+ mask?: string | number | MotionValue<any> | undefined;
3127
+ maskClip?: string | number | MotionValue<any> | undefined;
3128
+ maskComposite?: string | number | MotionValue<any> | undefined;
3129
+ maskImage?: string | number | MotionValue<any> | undefined;
3130
+ maskMode?: string | number | MotionValue<any> | undefined;
3131
+ maskOrigin?: string | number | MotionValue<any> | undefined;
3132
+ maskPosition?: string | number | MotionValue<any> | undefined;
3133
+ maskRepeat?: string | number | MotionValue<any> | undefined;
3134
+ maskSize?: string | number | MotionValue<any> | undefined;
3135
+ maskType?: string | number | MotionValue<any> | undefined;
3136
+ mathDepth?: string | number | MotionValue<any> | undefined;
3137
+ mathStyle?: string | number | MotionValue<any> | undefined;
3138
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
3139
+ maxHeight?: string | number | MotionValue<any> | undefined;
3140
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
3141
+ maxWidth?: string | number | MotionValue<any> | undefined;
3142
+ minBlockSize?: string | number | MotionValue<any> | undefined;
3143
+ minHeight?: string | number | MotionValue<any> | undefined;
3144
+ minInlineSize?: string | number | MotionValue<any> | undefined;
3145
+ minWidth?: string | number | MotionValue<any> | undefined;
3146
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
3147
+ objectFit?: string | number | MotionValue<any> | undefined;
3148
+ objectPosition?: string | number | MotionValue<any> | undefined;
3149
+ offset?: string | number | MotionValue<any> | undefined;
3150
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
3151
+ offsetDistance?: string | number | MotionValue<any> | undefined;
3152
+ offsetPath?: string | number | MotionValue<any> | undefined;
3153
+ offsetPosition?: string | number | MotionValue<any> | undefined;
3154
+ offsetRotate?: string | number | MotionValue<any> | undefined;
3155
+ opacity?: string | number | MotionValue<any> | undefined;
3156
+ order?: string | number | MotionValue<any> | undefined;
3157
+ orphans?: string | number | MotionValue<any> | undefined;
3158
+ outline?: string | number | MotionValue<any> | undefined;
3159
+ outlineColor?: string | number | MotionValue<any> | undefined;
3160
+ outlineOffset?: string | number | MotionValue<any> | undefined;
3161
+ outlineStyle?: string | number | MotionValue<any> | undefined;
3162
+ outlineWidth?: string | number | MotionValue<any> | undefined;
3163
+ overflow?: string | number | MotionValue<any> | undefined;
3164
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
3165
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
3166
+ overflowWrap?: string | number | MotionValue<any> | undefined;
3167
+ overflowX?: string | number | MotionValue<any> | undefined;
3168
+ overflowY?: string | number | MotionValue<any> | undefined;
3169
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
3170
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
3171
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
3172
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
3173
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
3174
+ padding?: string | number | MotionValue<any> | undefined;
3175
+ paddingBlock?: string | number | MotionValue<any> | undefined;
3176
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
3177
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
3178
+ paddingBottom?: string | number | MotionValue<any> | undefined;
3179
+ paddingInline?: string | number | MotionValue<any> | undefined;
3180
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
3181
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
3182
+ paddingLeft?: string | number | MotionValue<any> | undefined;
3183
+ paddingRight?: string | number | MotionValue<any> | undefined;
3184
+ paddingTop?: string | number | MotionValue<any> | undefined;
3185
+ page?: string | number | MotionValue<any> | undefined;
3186
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
3187
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
3188
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
3189
+ paintOrder?: string | number | MotionValue<any> | undefined;
3190
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
3191
+ placeContent?: string | number | MotionValue<any> | undefined;
3192
+ placeItems?: string | number | MotionValue<any> | undefined;
3193
+ placeSelf?: string | number | MotionValue<any> | undefined;
3194
+ pointerEvents?: string | number | MotionValue<any> | undefined;
3195
+ position?: string | number | MotionValue<any> | undefined;
3196
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
3197
+ quotes?: string | number | MotionValue<any> | undefined;
3198
+ r?: string | number | MotionValue<any> | undefined;
3199
+ resize?: string | number | MotionValue<any> | undefined;
3200
+ right?: string | number | MotionValue<any> | undefined;
3201
+ rowGap?: string | number | MotionValue<any> | undefined;
3202
+ rubyAlign?: string | number | MotionValue<any> | undefined;
3203
+ rubyPosition?: string | number | MotionValue<any> | undefined;
3204
+ rx?: string | number | MotionValue<any> | undefined;
3205
+ ry?: string | number | MotionValue<any> | undefined;
3206
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
3207
+ scrollMargin?: string | number | MotionValue<any> | undefined;
3208
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
3209
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
3210
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
3211
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
3212
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
3213
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
3214
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
3215
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
3216
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
3217
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
3218
+ scrollPadding?: string | number | MotionValue<any> | undefined;
3219
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
3220
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
3221
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
3222
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
3223
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
3224
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
3225
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
3226
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
3227
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
3228
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
3229
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
3230
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
3231
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
3232
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
3233
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
3234
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
3235
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
3236
+ shapeMargin?: string | number | MotionValue<any> | undefined;
3237
+ shapeOutside?: string | number | MotionValue<any> | undefined;
3238
+ shapeRendering?: string | number | MotionValue<any> | undefined;
3239
+ stopColor?: string | number | MotionValue<any> | undefined;
3240
+ stopOpacity?: string | number | MotionValue<any> | undefined;
3241
+ stroke?: string | number | MotionValue<any> | undefined;
3242
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
3243
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
3244
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
3245
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
3246
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
3247
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
3248
+ strokeWidth?: string | number | MotionValue<any> | undefined;
3249
+ tabSize?: string | number | MotionValue<any> | undefined;
3250
+ tableLayout?: string | number | MotionValue<any> | undefined;
3251
+ textAlign?: string | number | MotionValue<any> | undefined;
3252
+ textAlignLast?: string | number | MotionValue<any> | undefined;
3253
+ textAnchor?: string | number | MotionValue<any> | undefined;
3254
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
3255
+ textDecoration?: string | number | MotionValue<any> | undefined;
3256
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
3257
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
3258
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
3259
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
3260
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
3261
+ textEmphasis?: string | number | MotionValue<any> | undefined;
3262
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
3263
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
3264
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
3265
+ textIndent?: string | number | MotionValue<any> | undefined;
3266
+ textOrientation?: string | number | MotionValue<any> | undefined;
3267
+ textOverflow?: string | number | MotionValue<any> | undefined;
3268
+ textRendering?: string | number | MotionValue<any> | undefined;
3269
+ textShadow?: string | number | MotionValue<any> | undefined;
3270
+ textTransform?: string | number | MotionValue<any> | undefined;
3271
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
3272
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
3273
+ textWrap?: string | number | MotionValue<any> | undefined;
3274
+ textWrapMode?: string | number | MotionValue<any> | undefined;
3275
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
3276
+ top?: string | number | MotionValue<any> | undefined;
3277
+ touchAction?: string | number | MotionValue<any> | undefined;
3278
+ transform?: string | number | MotionValue<any> | undefined;
3279
+ transformBox?: string | number | MotionValue<any> | undefined;
3280
+ transformOrigin?: string | number | MotionValue<any> | undefined;
3281
+ transformStyle?: string | number | MotionValue<any> | undefined;
3282
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
3283
+ transitionDelay?: string | number | MotionValue<any> | undefined;
3284
+ transitionDuration?: string | number | MotionValue<any> | undefined;
3285
+ transitionProperty?: string | number | MotionValue<any> | undefined;
3286
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
3287
+ translate?: string | number | MotionValue<any> | undefined;
3288
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
3289
+ userSelect?: string | number | MotionValue<any> | undefined;
3290
+ vectorEffect?: string | number | MotionValue<any> | undefined;
3291
+ verticalAlign?: string | number | MotionValue<any> | undefined;
3292
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
3293
+ visibility?: string | number | MotionValue<any> | undefined;
3294
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
3295
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
3296
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
3297
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
3298
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
3299
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
3300
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
3301
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
3302
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
3303
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
3304
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
3305
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
3306
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
3307
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
3308
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
3309
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
3310
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
3311
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
3312
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
3313
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
3314
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
3315
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
3316
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
3317
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
3318
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
3319
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
3320
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
3321
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
3322
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
3323
+ webkitFilter?: string | number | MotionValue<any> | undefined;
3324
+ webkitFlex?: string | number | MotionValue<any> | undefined;
3325
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
3326
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
3327
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
3328
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
3329
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
3330
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
3331
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
3332
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
3333
+ webkitMask?: string | number | MotionValue<any> | undefined;
3334
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
3335
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
3336
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
3337
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
3338
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
3339
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
3340
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
3341
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
3342
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
3343
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
3344
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
3345
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
3346
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
3347
+ webkitOrder?: string | number | MotionValue<any> | undefined;
3348
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
3349
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
3350
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
3351
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
3352
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
3353
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
3354
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
3355
+ webkitTransform?: string | number | MotionValue<any> | undefined;
3356
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
3357
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
3358
+ webkitTransition?: string | number | MotionValue<any> | undefined;
3359
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
3360
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
3361
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
3362
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
3363
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
3364
+ whiteSpace?: string | number | MotionValue<any> | undefined;
3365
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
3366
+ widows?: string | number | MotionValue<any> | undefined;
3367
+ width?: string | number | MotionValue<any> | undefined;
3368
+ willChange?: string | number | MotionValue<any> | undefined;
3369
+ wordBreak?: string | number | MotionValue<any> | undefined;
3370
+ wordSpacing?: string | number | MotionValue<any> | undefined;
3371
+ wordWrap?: string | number | MotionValue<any> | undefined;
3372
+ writingMode?: string | number | MotionValue<any> | undefined;
3373
+ zIndex?: string | number | MotionValue<any> | undefined;
3374
+ zoom?: string | number | MotionValue<any> | undefined;
3375
+ accentHeight?: string | number | MotionValue<any> | undefined;
3376
+ accumulate?: string | number | MotionValue<any> | undefined;
3377
+ additive?: string | number | MotionValue<any> | undefined;
3378
+ allowReorder?: string | number | MotionValue<any> | undefined;
3379
+ alphabetic?: string | number | MotionValue<any> | undefined;
3380
+ amplitude?: string | number | MotionValue<any> | undefined;
3381
+ arabicForm?: string | number | MotionValue<any> | undefined;
3382
+ ascent?: string | number | MotionValue<any> | undefined;
3383
+ attributeName?: string | number | MotionValue<any> | undefined;
3384
+ attributeType?: string | number | MotionValue<any> | undefined;
3385
+ autoReverse?: string | number | MotionValue<any> | undefined;
3386
+ azimuth?: string | number | MotionValue<any> | undefined;
3387
+ baseFrequency?: string | number | MotionValue<any> | undefined;
3388
+ baseProfile?: string | number | MotionValue<any> | undefined;
3389
+ bbox?: string | number | MotionValue<any> | undefined;
3390
+ begin?: string | number | MotionValue<any> | undefined;
3391
+ bias?: string | number | MotionValue<any> | undefined;
3392
+ by?: string | number | MotionValue<any> | undefined;
3393
+ calcMode?: string | number | MotionValue<any> | undefined;
3394
+ capHeight?: string | number | MotionValue<any> | undefined;
3395
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
3396
+ colorProfile?: string | number | MotionValue<any> | undefined;
3397
+ colorRendering?: string | number | MotionValue<any> | undefined;
3398
+ contentScriptType?: string | number | MotionValue<any> | undefined;
3399
+ contentStyleType?: string | number | MotionValue<any> | undefined;
3400
+ decelerate?: string | number | MotionValue<any> | undefined;
3401
+ descent?: string | number | MotionValue<any> | undefined;
3402
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
3403
+ divisor?: string | number | MotionValue<any> | undefined;
3404
+ dur?: string | number | MotionValue<any> | undefined;
3405
+ dx?: string | number | MotionValue<any> | undefined;
3406
+ dy?: string | number | MotionValue<any> | undefined;
3407
+ edgeMode?: string | number | MotionValue<any> | undefined;
3408
+ elevation?: string | number | MotionValue<any> | undefined;
3409
+ enableBackground?: string | number | MotionValue<any> | undefined;
3410
+ end?: string | number | MotionValue<any> | undefined;
3411
+ exponent?: string | number | MotionValue<any> | undefined;
3412
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
3413
+ filterRes?: string | number | MotionValue<any> | undefined;
3414
+ filterUnits?: string | number | MotionValue<any> | undefined;
3415
+ focusable?: string | number | MotionValue<any> | undefined;
3416
+ format?: string | number | MotionValue<any> | undefined;
3417
+ fr?: string | number | MotionValue<any> | undefined;
3418
+ fx?: string | number | MotionValue<any> | undefined;
3419
+ fy?: string | number | MotionValue<any> | undefined;
3420
+ g1?: string | number | MotionValue<any> | undefined;
3421
+ g2?: string | number | MotionValue<any> | undefined;
3422
+ glyphName?: string | number | MotionValue<any> | undefined;
3423
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
3424
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
3425
+ glyphRef?: string | number | MotionValue<any> | undefined;
3426
+ gradientTransform?: string | number | MotionValue<any> | undefined;
3427
+ gradientUnits?: string | number | MotionValue<any> | undefined;
3428
+ hanging?: string | number | MotionValue<any> | undefined;
3429
+ horizAdvX?: string | number | MotionValue<any> | undefined;
3430
+ horizOriginX?: string | number | MotionValue<any> | undefined;
3431
+ href?: string | number | MotionValue<any> | undefined;
3432
+ ideographic?: string | number | MotionValue<any> | undefined;
3433
+ in2?: string | number | MotionValue<any> | undefined;
3434
+ in?: string | number | MotionValue<any> | undefined;
3435
+ intercept?: string | number | MotionValue<any> | undefined;
3436
+ k1?: string | number | MotionValue<any> | undefined;
3437
+ k2?: string | number | MotionValue<any> | undefined;
3438
+ k3?: string | number | MotionValue<any> | undefined;
3439
+ k4?: string | number | MotionValue<any> | undefined;
3440
+ k?: string | number | MotionValue<any> | undefined;
3441
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
3442
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
3443
+ kerning?: string | number | MotionValue<any> | undefined;
3444
+ keyPoints?: string | number | MotionValue<any> | undefined;
3445
+ keySplines?: string | number | MotionValue<any> | undefined;
3446
+ keyTimes?: string | number | MotionValue<any> | undefined;
3447
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
3448
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
3449
+ local?: string | number | MotionValue<any> | undefined;
3450
+ markerHeight?: string | number | MotionValue<any> | undefined;
3451
+ markerUnits?: string | number | MotionValue<any> | undefined;
3452
+ markerWidth?: string | number | MotionValue<any> | undefined;
3453
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
3454
+ maskUnits?: string | number | MotionValue<any> | undefined;
3455
+ mathematical?: string | number | MotionValue<any> | undefined;
3456
+ mode?: string | number | MotionValue<any> | undefined;
3457
+ numOctaves?: string | number | MotionValue<any> | undefined;
3458
+ operator?: string | number | MotionValue<any> | undefined;
3459
+ orient?: string | number | MotionValue<any> | undefined;
3460
+ orientation?: string | number | MotionValue<any> | undefined;
3461
+ origin?: string | number | MotionValue<any> | undefined;
3462
+ overlinePosition?: string | number | MotionValue<any> | undefined;
3463
+ overlineThickness?: string | number | MotionValue<any> | undefined;
3464
+ panose1?: string | number | MotionValue<any> | undefined;
3465
+ path?: string | number | MotionValue<any> | undefined;
3466
+ pathLength?: string | number | MotionValue<any> | undefined;
3467
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
3468
+ patternTransform?: string | number | MotionValue<any> | undefined;
3469
+ patternUnits?: string | number | MotionValue<any> | undefined;
3470
+ points?: string | number | MotionValue<any> | undefined;
3471
+ pointsAtX?: string | number | MotionValue<any> | undefined;
3472
+ pointsAtY?: string | number | MotionValue<any> | undefined;
3473
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
3474
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
3475
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
3476
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
3477
+ radius?: string | number | MotionValue<any> | undefined;
3478
+ refX?: string | number | MotionValue<any> | undefined;
3479
+ refY?: string | number | MotionValue<any> | undefined;
3480
+ renderingIntent?: string | number | MotionValue<any> | undefined;
3481
+ repeatCount?: string | number | MotionValue<any> | undefined;
3482
+ repeatDur?: string | number | MotionValue<any> | undefined;
3483
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
3484
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
3485
+ restart?: string | number | MotionValue<any> | undefined;
3486
+ result?: string | number | MotionValue<any> | undefined;
3487
+ seed?: string | number | MotionValue<any> | undefined;
3488
+ slope?: string | number | MotionValue<any> | undefined;
3489
+ spacing?: string | number | MotionValue<any> | undefined;
3490
+ specularConstant?: string | number | MotionValue<any> | undefined;
3491
+ specularExponent?: string | number | MotionValue<any> | undefined;
3492
+ speed?: string | number | MotionValue<any> | undefined;
3493
+ spreadMethod?: string | number | MotionValue<any> | undefined;
3494
+ startOffset?: string | number | MotionValue<any> | undefined;
3495
+ stdDeviation?: string | number | MotionValue<any> | undefined;
3496
+ stemh?: string | number | MotionValue<any> | undefined;
3497
+ stemv?: string | number | MotionValue<any> | undefined;
3498
+ stitchTiles?: string | number | MotionValue<any> | undefined;
3499
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
3500
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
3501
+ surfaceScale?: string | number | MotionValue<any> | undefined;
3502
+ systemLanguage?: string | number | MotionValue<any> | undefined;
3503
+ tableValues?: string | number | MotionValue<any> | undefined;
3504
+ targetX?: string | number | MotionValue<any> | undefined;
3505
+ targetY?: string | number | MotionValue<any> | undefined;
3506
+ textLength?: string | number | MotionValue<any> | undefined;
3507
+ to?: string | number | MotionValue<any> | undefined;
3508
+ u1?: string | number | MotionValue<any> | undefined;
3509
+ u2?: string | number | MotionValue<any> | undefined;
3510
+ underlinePosition?: string | number | MotionValue<any> | undefined;
3511
+ underlineThickness?: string | number | MotionValue<any> | undefined;
3512
+ unicode?: string | number | MotionValue<any> | undefined;
3513
+ unicodeRange?: string | number | MotionValue<any> | undefined;
3514
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
3515
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
3516
+ values?: string | number | MotionValue<any> | undefined;
3517
+ version?: string | number | MotionValue<any> | undefined;
3518
+ vertAdvY?: string | number | MotionValue<any> | undefined;
3519
+ vertOriginX?: string | number | MotionValue<any> | undefined;
3520
+ vertOriginY?: string | number | MotionValue<any> | undefined;
3521
+ vHanging?: string | number | MotionValue<any> | undefined;
3522
+ vIdeographic?: string | number | MotionValue<any> | undefined;
3523
+ viewBox?: string | number | MotionValue<any> | undefined;
3524
+ viewTarget?: string | number | MotionValue<any> | undefined;
3525
+ vMathematical?: string | number | MotionValue<any> | undefined;
3526
+ widths?: string | number | MotionValue<any> | undefined;
3527
+ x1?: string | number | MotionValue<any> | undefined;
3528
+ x2?: string | number | MotionValue<any> | undefined;
3529
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
3530
+ xHeight?: string | number | MotionValue<any> | undefined;
3531
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
3532
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
3533
+ xlinkHref?: string | number | MotionValue<any> | undefined;
3534
+ xlinkRole?: string | number | MotionValue<any> | undefined;
3535
+ xlinkShow?: string | number | MotionValue<any> | undefined;
3536
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
3537
+ xlinkType?: string | number | MotionValue<any> | undefined;
3538
+ xmlBase?: string | number | MotionValue<any> | undefined;
3539
+ xmlLang?: string | number | MotionValue<any> | undefined;
3540
+ xmlns?: string | number | MotionValue<any> | undefined;
3541
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
3542
+ xmlSpace?: string | number | MotionValue<any> | undefined;
3543
+ y1?: string | number | MotionValue<any> | undefined;
3544
+ y2?: string | number | MotionValue<any> | undefined;
3545
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
3546
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
3547
+ pathOffset?: string | number | MotionValue<any> | undefined;
3548
+ pathSpacing?: string | number | MotionValue<any> | undefined;
3549
+ }>;
3550
+ "aria-hidden"?: boolean | undefined;
3551
+ "aria-posinset"?: number | undefined;
3552
+ "aria-setsize"?: number | undefined;
3553
+ }>;
12
3554
  } | null) => {
13
3555
  offset: MotionValue<number>;
3556
+ bounds: Ref<{
3557
+ start: number;
3558
+ end: number;
3559
+ }>;
3560
+ projection: MotionValue<number>;
3561
+ itemIndex: Ref<number>;
3562
+ cloneIndex: Ref<number | undefined>;
3563
+ props: ComputedRef<{
3564
+ "class": string;
3565
+ "style": Partial<{
3566
+ [x: `--${string}`]: string | number | MotionValue<any> | undefined;
3567
+ string?: string | number | MotionValue<any> | undefined;
3568
+ transition?: string | number | MotionValue<any> | undefined;
3569
+ x?: string | number | MotionValue<any> | undefined;
3570
+ y?: string | number | MotionValue<any> | undefined;
3571
+ z?: string | number | MotionValue<any> | undefined;
3572
+ translateX?: string | number | MotionValue<any> | undefined;
3573
+ translateY?: string | number | MotionValue<any> | undefined;
3574
+ translateZ?: string | number | MotionValue<any> | undefined;
3575
+ rotate?: string | number | MotionValue<any> | undefined;
3576
+ rotateX?: string | number | MotionValue<any> | undefined;
3577
+ rotateY?: string | number | MotionValue<any> | undefined;
3578
+ rotateZ?: string | number | MotionValue<any> | undefined;
3579
+ scale?: string | number | MotionValue<any> | undefined;
3580
+ scaleX?: string | number | MotionValue<any> | undefined;
3581
+ scaleY?: string | number | MotionValue<any> | undefined;
3582
+ scaleZ?: string | number | MotionValue<any> | undefined;
3583
+ skew?: string | number | MotionValue<any> | undefined;
3584
+ skewX?: string | number | MotionValue<any> | undefined;
3585
+ skewY?: string | number | MotionValue<any> | undefined;
3586
+ originX?: string | number | MotionValue<any> | undefined;
3587
+ originY?: string | number | MotionValue<any> | undefined;
3588
+ originZ?: string | number | MotionValue<any> | undefined;
3589
+ perspective?: string | number | MotionValue<any> | undefined;
3590
+ transformPerspective?: string | number | MotionValue<any> | undefined;
3591
+ accentColor?: string | number | MotionValue<any> | undefined;
3592
+ alignContent?: string | number | MotionValue<any> | undefined;
3593
+ alignItems?: string | number | MotionValue<any> | undefined;
3594
+ alignSelf?: string | number | MotionValue<any> | undefined;
3595
+ alignmentBaseline?: string | number | MotionValue<any> | undefined;
3596
+ all?: string | number | MotionValue<any> | undefined;
3597
+ animation?: string | number | MotionValue<any> | undefined;
3598
+ animationComposition?: string | number | MotionValue<any> | undefined;
3599
+ animationDelay?: string | number | MotionValue<any> | undefined;
3600
+ animationDirection?: string | number | MotionValue<any> | undefined;
3601
+ animationDuration?: string | number | MotionValue<any> | undefined;
3602
+ animationFillMode?: string | number | MotionValue<any> | undefined;
3603
+ animationIterationCount?: string | number | MotionValue<any> | undefined;
3604
+ animationName?: string | number | MotionValue<any> | undefined;
3605
+ animationPlayState?: string | number | MotionValue<any> | undefined;
3606
+ animationTimingFunction?: string | number | MotionValue<any> | undefined;
3607
+ appearance?: string | number | MotionValue<any> | undefined;
3608
+ aspectRatio?: string | number | MotionValue<any> | undefined;
3609
+ backdropFilter?: string | number | MotionValue<any> | undefined;
3610
+ backfaceVisibility?: string | number | MotionValue<any> | undefined;
3611
+ background?: string | number | MotionValue<any> | undefined;
3612
+ backgroundAttachment?: string | number | MotionValue<any> | undefined;
3613
+ backgroundBlendMode?: string | number | MotionValue<any> | undefined;
3614
+ backgroundClip?: string | number | MotionValue<any> | undefined;
3615
+ backgroundColor?: string | number | MotionValue<any> | undefined;
3616
+ backgroundImage?: string | number | MotionValue<any> | undefined;
3617
+ backgroundOrigin?: string | number | MotionValue<any> | undefined;
3618
+ backgroundPosition?: string | number | MotionValue<any> | undefined;
3619
+ backgroundPositionX?: string | number | MotionValue<any> | undefined;
3620
+ backgroundPositionY?: string | number | MotionValue<any> | undefined;
3621
+ backgroundRepeat?: string | number | MotionValue<any> | undefined;
3622
+ backgroundSize?: string | number | MotionValue<any> | undefined;
3623
+ baselineShift?: string | number | MotionValue<any> | undefined;
3624
+ baselineSource?: string | number | MotionValue<any> | undefined;
3625
+ blockSize?: string | number | MotionValue<any> | undefined;
3626
+ border?: string | number | MotionValue<any> | undefined;
3627
+ borderBlock?: string | number | MotionValue<any> | undefined;
3628
+ borderBlockColor?: string | number | MotionValue<any> | undefined;
3629
+ borderBlockEnd?: string | number | MotionValue<any> | undefined;
3630
+ borderBlockEndColor?: string | number | MotionValue<any> | undefined;
3631
+ borderBlockEndStyle?: string | number | MotionValue<any> | undefined;
3632
+ borderBlockEndWidth?: string | number | MotionValue<any> | undefined;
3633
+ borderBlockStart?: string | number | MotionValue<any> | undefined;
3634
+ borderBlockStartColor?: string | number | MotionValue<any> | undefined;
3635
+ borderBlockStartStyle?: string | number | MotionValue<any> | undefined;
3636
+ borderBlockStartWidth?: string | number | MotionValue<any> | undefined;
3637
+ borderBlockStyle?: string | number | MotionValue<any> | undefined;
3638
+ borderBlockWidth?: string | number | MotionValue<any> | undefined;
3639
+ borderBottom?: string | number | MotionValue<any> | undefined;
3640
+ borderBottomColor?: string | number | MotionValue<any> | undefined;
3641
+ borderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
3642
+ borderBottomRightRadius?: string | number | MotionValue<any> | undefined;
3643
+ borderBottomStyle?: string | number | MotionValue<any> | undefined;
3644
+ borderBottomWidth?: string | number | MotionValue<any> | undefined;
3645
+ borderCollapse?: string | number | MotionValue<any> | undefined;
3646
+ borderColor?: string | number | MotionValue<any> | undefined;
3647
+ borderEndEndRadius?: string | number | MotionValue<any> | undefined;
3648
+ borderEndStartRadius?: string | number | MotionValue<any> | undefined;
3649
+ borderImage?: string | number | MotionValue<any> | undefined;
3650
+ borderImageOutset?: string | number | MotionValue<any> | undefined;
3651
+ borderImageRepeat?: string | number | MotionValue<any> | undefined;
3652
+ borderImageSlice?: string | number | MotionValue<any> | undefined;
3653
+ borderImageSource?: string | number | MotionValue<any> | undefined;
3654
+ borderImageWidth?: string | number | MotionValue<any> | undefined;
3655
+ borderInline?: string | number | MotionValue<any> | undefined;
3656
+ borderInlineColor?: string | number | MotionValue<any> | undefined;
3657
+ borderInlineEnd?: string | number | MotionValue<any> | undefined;
3658
+ borderInlineEndColor?: string | number | MotionValue<any> | undefined;
3659
+ borderInlineEndStyle?: string | number | MotionValue<any> | undefined;
3660
+ borderInlineEndWidth?: string | number | MotionValue<any> | undefined;
3661
+ borderInlineStart?: string | number | MotionValue<any> | undefined;
3662
+ borderInlineStartColor?: string | number | MotionValue<any> | undefined;
3663
+ borderInlineStartStyle?: string | number | MotionValue<any> | undefined;
3664
+ borderInlineStartWidth?: string | number | MotionValue<any> | undefined;
3665
+ borderInlineStyle?: string | number | MotionValue<any> | undefined;
3666
+ borderInlineWidth?: string | number | MotionValue<any> | undefined;
3667
+ borderLeft?: string | number | MotionValue<any> | undefined;
3668
+ borderLeftColor?: string | number | MotionValue<any> | undefined;
3669
+ borderLeftStyle?: string | number | MotionValue<any> | undefined;
3670
+ borderLeftWidth?: string | number | MotionValue<any> | undefined;
3671
+ borderRadius?: string | number | MotionValue<any> | undefined;
3672
+ borderRight?: string | number | MotionValue<any> | undefined;
3673
+ borderRightColor?: string | number | MotionValue<any> | undefined;
3674
+ borderRightStyle?: string | number | MotionValue<any> | undefined;
3675
+ borderRightWidth?: string | number | MotionValue<any> | undefined;
3676
+ borderSpacing?: string | number | MotionValue<any> | undefined;
3677
+ borderStartEndRadius?: string | number | MotionValue<any> | undefined;
3678
+ borderStartStartRadius?: string | number | MotionValue<any> | undefined;
3679
+ borderStyle?: string | number | MotionValue<any> | undefined;
3680
+ borderTop?: string | number | MotionValue<any> | undefined;
3681
+ borderTopColor?: string | number | MotionValue<any> | undefined;
3682
+ borderTopLeftRadius?: string | number | MotionValue<any> | undefined;
3683
+ borderTopRightRadius?: string | number | MotionValue<any> | undefined;
3684
+ borderTopStyle?: string | number | MotionValue<any> | undefined;
3685
+ borderTopWidth?: string | number | MotionValue<any> | undefined;
3686
+ borderWidth?: string | number | MotionValue<any> | undefined;
3687
+ bottom?: string | number | MotionValue<any> | undefined;
3688
+ boxShadow?: string | number | MotionValue<any> | undefined;
3689
+ boxSizing?: string | number | MotionValue<any> | undefined;
3690
+ breakAfter?: string | number | MotionValue<any> | undefined;
3691
+ breakBefore?: string | number | MotionValue<any> | undefined;
3692
+ breakInside?: string | number | MotionValue<any> | undefined;
3693
+ captionSide?: string | number | MotionValue<any> | undefined;
3694
+ caretColor?: string | number | MotionValue<any> | undefined;
3695
+ clear?: string | number | MotionValue<any> | undefined;
3696
+ clip?: string | number | MotionValue<any> | undefined;
3697
+ clipPath?: string | number | MotionValue<any> | undefined;
3698
+ clipRule?: string | number | MotionValue<any> | undefined;
3699
+ color?: string | number | MotionValue<any> | undefined;
3700
+ colorInterpolation?: string | number | MotionValue<any> | undefined;
3701
+ colorInterpolationFilters?: string | number | MotionValue<any> | undefined;
3702
+ colorScheme?: string | number | MotionValue<any> | undefined;
3703
+ columnCount?: string | number | MotionValue<any> | undefined;
3704
+ columnFill?: string | number | MotionValue<any> | undefined;
3705
+ columnGap?: string | number | MotionValue<any> | undefined;
3706
+ columnRule?: string | number | MotionValue<any> | undefined;
3707
+ columnRuleColor?: string | number | MotionValue<any> | undefined;
3708
+ columnRuleStyle?: string | number | MotionValue<any> | undefined;
3709
+ columnRuleWidth?: string | number | MotionValue<any> | undefined;
3710
+ columnSpan?: string | number | MotionValue<any> | undefined;
3711
+ columnWidth?: string | number | MotionValue<any> | undefined;
3712
+ columns?: string | number | MotionValue<any> | undefined;
3713
+ contain?: string | number | MotionValue<any> | undefined;
3714
+ containIntrinsicBlockSize?: string | number | MotionValue<any> | undefined;
3715
+ containIntrinsicHeight?: string | number | MotionValue<any> | undefined;
3716
+ containIntrinsicInlineSize?: string | number | MotionValue<any> | undefined;
3717
+ containIntrinsicSize?: string | number | MotionValue<any> | undefined;
3718
+ containIntrinsicWidth?: string | number | MotionValue<any> | undefined;
3719
+ container?: string | number | MotionValue<any> | undefined;
3720
+ containerName?: string | number | MotionValue<any> | undefined;
3721
+ containerType?: string | number | MotionValue<any> | undefined;
3722
+ content?: string | number | MotionValue<any> | undefined;
3723
+ contentVisibility?: string | number | MotionValue<any> | undefined;
3724
+ counterIncrement?: string | number | MotionValue<any> | undefined;
3725
+ counterReset?: string | number | MotionValue<any> | undefined;
3726
+ counterSet?: string | number | MotionValue<any> | undefined;
3727
+ cssFloat?: string | number | MotionValue<any> | undefined;
3728
+ cssText?: string | number | MotionValue<any> | undefined;
3729
+ cursor?: string | number | MotionValue<any> | undefined;
3730
+ cx?: string | number | MotionValue<any> | undefined;
3731
+ cy?: string | number | MotionValue<any> | undefined;
3732
+ d?: string | number | MotionValue<any> | undefined;
3733
+ direction?: string | number | MotionValue<any> | undefined;
3734
+ display?: string | number | MotionValue<any> | undefined;
3735
+ dominantBaseline?: string | number | MotionValue<any> | undefined;
3736
+ emptyCells?: string | number | MotionValue<any> | undefined;
3737
+ fill?: string | number | MotionValue<any> | undefined;
3738
+ fillOpacity?: string | number | MotionValue<any> | undefined;
3739
+ fillRule?: string | number | MotionValue<any> | undefined;
3740
+ filter?: string | number | MotionValue<any> | undefined;
3741
+ flex?: string | number | MotionValue<any> | undefined;
3742
+ flexBasis?: string | number | MotionValue<any> | undefined;
3743
+ flexDirection?: string | number | MotionValue<any> | undefined;
3744
+ flexFlow?: string | number | MotionValue<any> | undefined;
3745
+ flexGrow?: string | number | MotionValue<any> | undefined;
3746
+ flexShrink?: string | number | MotionValue<any> | undefined;
3747
+ flexWrap?: string | number | MotionValue<any> | undefined;
3748
+ float?: string | number | MotionValue<any> | undefined;
3749
+ floodColor?: string | number | MotionValue<any> | undefined;
3750
+ floodOpacity?: string | number | MotionValue<any> | undefined;
3751
+ font?: string | number | MotionValue<any> | undefined;
3752
+ fontFamily?: string | number | MotionValue<any> | undefined;
3753
+ fontFeatureSettings?: string | number | MotionValue<any> | undefined;
3754
+ fontKerning?: string | number | MotionValue<any> | undefined;
3755
+ fontOpticalSizing?: string | number | MotionValue<any> | undefined;
3756
+ fontPalette?: string | number | MotionValue<any> | undefined;
3757
+ fontSize?: string | number | MotionValue<any> | undefined;
3758
+ fontSizeAdjust?: string | number | MotionValue<any> | undefined;
3759
+ fontStretch?: string | number | MotionValue<any> | undefined;
3760
+ fontStyle?: string | number | MotionValue<any> | undefined;
3761
+ fontSynthesis?: string | number | MotionValue<any> | undefined;
3762
+ fontSynthesisSmallCaps?: string | number | MotionValue<any> | undefined;
3763
+ fontSynthesisStyle?: string | number | MotionValue<any> | undefined;
3764
+ fontSynthesisWeight?: string | number | MotionValue<any> | undefined;
3765
+ fontVariant?: string | number | MotionValue<any> | undefined;
3766
+ fontVariantAlternates?: string | number | MotionValue<any> | undefined;
3767
+ fontVariantCaps?: string | number | MotionValue<any> | undefined;
3768
+ fontVariantEastAsian?: string | number | MotionValue<any> | undefined;
3769
+ fontVariantLigatures?: string | number | MotionValue<any> | undefined;
3770
+ fontVariantNumeric?: string | number | MotionValue<any> | undefined;
3771
+ fontVariantPosition?: string | number | MotionValue<any> | undefined;
3772
+ fontVariationSettings?: string | number | MotionValue<any> | undefined;
3773
+ fontWeight?: string | number | MotionValue<any> | undefined;
3774
+ forcedColorAdjust?: string | number | MotionValue<any> | undefined;
3775
+ gap?: string | number | MotionValue<any> | undefined;
3776
+ grid?: string | number | MotionValue<any> | undefined;
3777
+ gridArea?: string | number | MotionValue<any> | undefined;
3778
+ gridAutoColumns?: string | number | MotionValue<any> | undefined;
3779
+ gridAutoFlow?: string | number | MotionValue<any> | undefined;
3780
+ gridAutoRows?: string | number | MotionValue<any> | undefined;
3781
+ gridColumn?: string | number | MotionValue<any> | undefined;
3782
+ gridColumnEnd?: string | number | MotionValue<any> | undefined;
3783
+ gridColumnGap?: string | number | MotionValue<any> | undefined;
3784
+ gridColumnStart?: string | number | MotionValue<any> | undefined;
3785
+ gridGap?: string | number | MotionValue<any> | undefined;
3786
+ gridRow?: string | number | MotionValue<any> | undefined;
3787
+ gridRowEnd?: string | number | MotionValue<any> | undefined;
3788
+ gridRowGap?: string | number | MotionValue<any> | undefined;
3789
+ gridRowStart?: string | number | MotionValue<any> | undefined;
3790
+ gridTemplate?: string | number | MotionValue<any> | undefined;
3791
+ gridTemplateAreas?: string | number | MotionValue<any> | undefined;
3792
+ gridTemplateColumns?: string | number | MotionValue<any> | undefined;
3793
+ gridTemplateRows?: string | number | MotionValue<any> | undefined;
3794
+ height?: string | number | MotionValue<any> | undefined;
3795
+ hyphenateCharacter?: string | number | MotionValue<any> | undefined;
3796
+ hyphens?: string | number | MotionValue<any> | undefined;
3797
+ imageOrientation?: string | number | MotionValue<any> | undefined;
3798
+ imageRendering?: string | number | MotionValue<any> | undefined;
3799
+ inlineSize?: string | number | MotionValue<any> | undefined;
3800
+ inset?: string | number | MotionValue<any> | undefined;
3801
+ insetBlock?: string | number | MotionValue<any> | undefined;
3802
+ insetBlockEnd?: string | number | MotionValue<any> | undefined;
3803
+ insetBlockStart?: string | number | MotionValue<any> | undefined;
3804
+ insetInline?: string | number | MotionValue<any> | undefined;
3805
+ insetInlineEnd?: string | number | MotionValue<any> | undefined;
3806
+ insetInlineStart?: string | number | MotionValue<any> | undefined;
3807
+ isolation?: string | number | MotionValue<any> | undefined;
3808
+ justifyContent?: string | number | MotionValue<any> | undefined;
3809
+ justifyItems?: string | number | MotionValue<any> | undefined;
3810
+ justifySelf?: string | number | MotionValue<any> | undefined;
3811
+ left?: string | number | MotionValue<any> | undefined;
3812
+ readonly length?: string | number | MotionValue<any> | undefined;
3813
+ letterSpacing?: string | number | MotionValue<any> | undefined;
3814
+ lightingColor?: string | number | MotionValue<any> | undefined;
3815
+ lineBreak?: string | number | MotionValue<any> | undefined;
3816
+ lineHeight?: string | number | MotionValue<any> | undefined;
3817
+ listStyle?: string | number | MotionValue<any> | undefined;
3818
+ listStyleImage?: string | number | MotionValue<any> | undefined;
3819
+ listStylePosition?: string | number | MotionValue<any> | undefined;
3820
+ listStyleType?: string | number | MotionValue<any> | undefined;
3821
+ margin?: string | number | MotionValue<any> | undefined;
3822
+ marginBlock?: string | number | MotionValue<any> | undefined;
3823
+ marginBlockEnd?: string | number | MotionValue<any> | undefined;
3824
+ marginBlockStart?: string | number | MotionValue<any> | undefined;
3825
+ marginBottom?: string | number | MotionValue<any> | undefined;
3826
+ marginInline?: string | number | MotionValue<any> | undefined;
3827
+ marginInlineEnd?: string | number | MotionValue<any> | undefined;
3828
+ marginInlineStart?: string | number | MotionValue<any> | undefined;
3829
+ marginLeft?: string | number | MotionValue<any> | undefined;
3830
+ marginRight?: string | number | MotionValue<any> | undefined;
3831
+ marginTop?: string | number | MotionValue<any> | undefined;
3832
+ marker?: string | number | MotionValue<any> | undefined;
3833
+ markerEnd?: string | number | MotionValue<any> | undefined;
3834
+ markerMid?: string | number | MotionValue<any> | undefined;
3835
+ markerStart?: string | number | MotionValue<any> | undefined;
3836
+ mask?: string | number | MotionValue<any> | undefined;
3837
+ maskClip?: string | number | MotionValue<any> | undefined;
3838
+ maskComposite?: string | number | MotionValue<any> | undefined;
3839
+ maskImage?: string | number | MotionValue<any> | undefined;
3840
+ maskMode?: string | number | MotionValue<any> | undefined;
3841
+ maskOrigin?: string | number | MotionValue<any> | undefined;
3842
+ maskPosition?: string | number | MotionValue<any> | undefined;
3843
+ maskRepeat?: string | number | MotionValue<any> | undefined;
3844
+ maskSize?: string | number | MotionValue<any> | undefined;
3845
+ maskType?: string | number | MotionValue<any> | undefined;
3846
+ mathDepth?: string | number | MotionValue<any> | undefined;
3847
+ mathStyle?: string | number | MotionValue<any> | undefined;
3848
+ maxBlockSize?: string | number | MotionValue<any> | undefined;
3849
+ maxHeight?: string | number | MotionValue<any> | undefined;
3850
+ maxInlineSize?: string | number | MotionValue<any> | undefined;
3851
+ maxWidth?: string | number | MotionValue<any> | undefined;
3852
+ minBlockSize?: string | number | MotionValue<any> | undefined;
3853
+ minHeight?: string | number | MotionValue<any> | undefined;
3854
+ minInlineSize?: string | number | MotionValue<any> | undefined;
3855
+ minWidth?: string | number | MotionValue<any> | undefined;
3856
+ mixBlendMode?: string | number | MotionValue<any> | undefined;
3857
+ objectFit?: string | number | MotionValue<any> | undefined;
3858
+ objectPosition?: string | number | MotionValue<any> | undefined;
3859
+ offset?: string | number | MotionValue<any> | undefined;
3860
+ offsetAnchor?: string | number | MotionValue<any> | undefined;
3861
+ offsetDistance?: string | number | MotionValue<any> | undefined;
3862
+ offsetPath?: string | number | MotionValue<any> | undefined;
3863
+ offsetPosition?: string | number | MotionValue<any> | undefined;
3864
+ offsetRotate?: string | number | MotionValue<any> | undefined;
3865
+ opacity?: string | number | MotionValue<any> | undefined;
3866
+ order?: string | number | MotionValue<any> | undefined;
3867
+ orphans?: string | number | MotionValue<any> | undefined;
3868
+ outline?: string | number | MotionValue<any> | undefined;
3869
+ outlineColor?: string | number | MotionValue<any> | undefined;
3870
+ outlineOffset?: string | number | MotionValue<any> | undefined;
3871
+ outlineStyle?: string | number | MotionValue<any> | undefined;
3872
+ outlineWidth?: string | number | MotionValue<any> | undefined;
3873
+ overflow?: string | number | MotionValue<any> | undefined;
3874
+ overflowAnchor?: string | number | MotionValue<any> | undefined;
3875
+ overflowClipMargin?: string | number | MotionValue<any> | undefined;
3876
+ overflowWrap?: string | number | MotionValue<any> | undefined;
3877
+ overflowX?: string | number | MotionValue<any> | undefined;
3878
+ overflowY?: string | number | MotionValue<any> | undefined;
3879
+ overscrollBehavior?: string | number | MotionValue<any> | undefined;
3880
+ overscrollBehaviorBlock?: string | number | MotionValue<any> | undefined;
3881
+ overscrollBehaviorInline?: string | number | MotionValue<any> | undefined;
3882
+ overscrollBehaviorX?: string | number | MotionValue<any> | undefined;
3883
+ overscrollBehaviorY?: string | number | MotionValue<any> | undefined;
3884
+ padding?: string | number | MotionValue<any> | undefined;
3885
+ paddingBlock?: string | number | MotionValue<any> | undefined;
3886
+ paddingBlockEnd?: string | number | MotionValue<any> | undefined;
3887
+ paddingBlockStart?: string | number | MotionValue<any> | undefined;
3888
+ paddingBottom?: string | number | MotionValue<any> | undefined;
3889
+ paddingInline?: string | number | MotionValue<any> | undefined;
3890
+ paddingInlineEnd?: string | number | MotionValue<any> | undefined;
3891
+ paddingInlineStart?: string | number | MotionValue<any> | undefined;
3892
+ paddingLeft?: string | number | MotionValue<any> | undefined;
3893
+ paddingRight?: string | number | MotionValue<any> | undefined;
3894
+ paddingTop?: string | number | MotionValue<any> | undefined;
3895
+ page?: string | number | MotionValue<any> | undefined;
3896
+ pageBreakAfter?: string | number | MotionValue<any> | undefined;
3897
+ pageBreakBefore?: string | number | MotionValue<any> | undefined;
3898
+ pageBreakInside?: string | number | MotionValue<any> | undefined;
3899
+ paintOrder?: string | number | MotionValue<any> | undefined;
3900
+ perspectiveOrigin?: string | number | MotionValue<any> | undefined;
3901
+ placeContent?: string | number | MotionValue<any> | undefined;
3902
+ placeItems?: string | number | MotionValue<any> | undefined;
3903
+ placeSelf?: string | number | MotionValue<any> | undefined;
3904
+ pointerEvents?: string | number | MotionValue<any> | undefined;
3905
+ position?: string | number | MotionValue<any> | undefined;
3906
+ printColorAdjust?: string | number | MotionValue<any> | undefined;
3907
+ quotes?: string | number | MotionValue<any> | undefined;
3908
+ r?: string | number | MotionValue<any> | undefined;
3909
+ resize?: string | number | MotionValue<any> | undefined;
3910
+ right?: string | number | MotionValue<any> | undefined;
3911
+ rowGap?: string | number | MotionValue<any> | undefined;
3912
+ rubyAlign?: string | number | MotionValue<any> | undefined;
3913
+ rubyPosition?: string | number | MotionValue<any> | undefined;
3914
+ rx?: string | number | MotionValue<any> | undefined;
3915
+ ry?: string | number | MotionValue<any> | undefined;
3916
+ scrollBehavior?: string | number | MotionValue<any> | undefined;
3917
+ scrollMargin?: string | number | MotionValue<any> | undefined;
3918
+ scrollMarginBlock?: string | number | MotionValue<any> | undefined;
3919
+ scrollMarginBlockEnd?: string | number | MotionValue<any> | undefined;
3920
+ scrollMarginBlockStart?: string | number | MotionValue<any> | undefined;
3921
+ scrollMarginBottom?: string | number | MotionValue<any> | undefined;
3922
+ scrollMarginInline?: string | number | MotionValue<any> | undefined;
3923
+ scrollMarginInlineEnd?: string | number | MotionValue<any> | undefined;
3924
+ scrollMarginInlineStart?: string | number | MotionValue<any> | undefined;
3925
+ scrollMarginLeft?: string | number | MotionValue<any> | undefined;
3926
+ scrollMarginRight?: string | number | MotionValue<any> | undefined;
3927
+ scrollMarginTop?: string | number | MotionValue<any> | undefined;
3928
+ scrollPadding?: string | number | MotionValue<any> | undefined;
3929
+ scrollPaddingBlock?: string | number | MotionValue<any> | undefined;
3930
+ scrollPaddingBlockEnd?: string | number | MotionValue<any> | undefined;
3931
+ scrollPaddingBlockStart?: string | number | MotionValue<any> | undefined;
3932
+ scrollPaddingBottom?: string | number | MotionValue<any> | undefined;
3933
+ scrollPaddingInline?: string | number | MotionValue<any> | undefined;
3934
+ scrollPaddingInlineEnd?: string | number | MotionValue<any> | undefined;
3935
+ scrollPaddingInlineStart?: string | number | MotionValue<any> | undefined;
3936
+ scrollPaddingLeft?: string | number | MotionValue<any> | undefined;
3937
+ scrollPaddingRight?: string | number | MotionValue<any> | undefined;
3938
+ scrollPaddingTop?: string | number | MotionValue<any> | undefined;
3939
+ scrollSnapAlign?: string | number | MotionValue<any> | undefined;
3940
+ scrollSnapStop?: string | number | MotionValue<any> | undefined;
3941
+ scrollSnapType?: string | number | MotionValue<any> | undefined;
3942
+ scrollbarColor?: string | number | MotionValue<any> | undefined;
3943
+ scrollbarGutter?: string | number | MotionValue<any> | undefined;
3944
+ scrollbarWidth?: string | number | MotionValue<any> | undefined;
3945
+ shapeImageThreshold?: string | number | MotionValue<any> | undefined;
3946
+ shapeMargin?: string | number | MotionValue<any> | undefined;
3947
+ shapeOutside?: string | number | MotionValue<any> | undefined;
3948
+ shapeRendering?: string | number | MotionValue<any> | undefined;
3949
+ stopColor?: string | number | MotionValue<any> | undefined;
3950
+ stopOpacity?: string | number | MotionValue<any> | undefined;
3951
+ stroke?: string | number | MotionValue<any> | undefined;
3952
+ strokeDasharray?: string | number | MotionValue<any> | undefined;
3953
+ strokeDashoffset?: string | number | MotionValue<any> | undefined;
3954
+ strokeLinecap?: string | number | MotionValue<any> | undefined;
3955
+ strokeLinejoin?: string | number | MotionValue<any> | undefined;
3956
+ strokeMiterlimit?: string | number | MotionValue<any> | undefined;
3957
+ strokeOpacity?: string | number | MotionValue<any> | undefined;
3958
+ strokeWidth?: string | number | MotionValue<any> | undefined;
3959
+ tabSize?: string | number | MotionValue<any> | undefined;
3960
+ tableLayout?: string | number | MotionValue<any> | undefined;
3961
+ textAlign?: string | number | MotionValue<any> | undefined;
3962
+ textAlignLast?: string | number | MotionValue<any> | undefined;
3963
+ textAnchor?: string | number | MotionValue<any> | undefined;
3964
+ textCombineUpright?: string | number | MotionValue<any> | undefined;
3965
+ textDecoration?: string | number | MotionValue<any> | undefined;
3966
+ textDecorationColor?: string | number | MotionValue<any> | undefined;
3967
+ textDecorationLine?: string | number | MotionValue<any> | undefined;
3968
+ textDecorationSkipInk?: string | number | MotionValue<any> | undefined;
3969
+ textDecorationStyle?: string | number | MotionValue<any> | undefined;
3970
+ textDecorationThickness?: string | number | MotionValue<any> | undefined;
3971
+ textEmphasis?: string | number | MotionValue<any> | undefined;
3972
+ textEmphasisColor?: string | number | MotionValue<any> | undefined;
3973
+ textEmphasisPosition?: string | number | MotionValue<any> | undefined;
3974
+ textEmphasisStyle?: string | number | MotionValue<any> | undefined;
3975
+ textIndent?: string | number | MotionValue<any> | undefined;
3976
+ textOrientation?: string | number | MotionValue<any> | undefined;
3977
+ textOverflow?: string | number | MotionValue<any> | undefined;
3978
+ textRendering?: string | number | MotionValue<any> | undefined;
3979
+ textShadow?: string | number | MotionValue<any> | undefined;
3980
+ textTransform?: string | number | MotionValue<any> | undefined;
3981
+ textUnderlineOffset?: string | number | MotionValue<any> | undefined;
3982
+ textUnderlinePosition?: string | number | MotionValue<any> | undefined;
3983
+ textWrap?: string | number | MotionValue<any> | undefined;
3984
+ textWrapMode?: string | number | MotionValue<any> | undefined;
3985
+ textWrapStyle?: string | number | MotionValue<any> | undefined;
3986
+ top?: string | number | MotionValue<any> | undefined;
3987
+ touchAction?: string | number | MotionValue<any> | undefined;
3988
+ transform?: string | number | MotionValue<any> | undefined;
3989
+ transformBox?: string | number | MotionValue<any> | undefined;
3990
+ transformOrigin?: string | number | MotionValue<any> | undefined;
3991
+ transformStyle?: string | number | MotionValue<any> | undefined;
3992
+ transitionBehavior?: string | number | MotionValue<any> | undefined;
3993
+ transitionDelay?: string | number | MotionValue<any> | undefined;
3994
+ transitionDuration?: string | number | MotionValue<any> | undefined;
3995
+ transitionProperty?: string | number | MotionValue<any> | undefined;
3996
+ transitionTimingFunction?: string | number | MotionValue<any> | undefined;
3997
+ translate?: string | number | MotionValue<any> | undefined;
3998
+ unicodeBidi?: string | number | MotionValue<any> | undefined;
3999
+ userSelect?: string | number | MotionValue<any> | undefined;
4000
+ vectorEffect?: string | number | MotionValue<any> | undefined;
4001
+ verticalAlign?: string | number | MotionValue<any> | undefined;
4002
+ viewTransitionName?: string | number | MotionValue<any> | undefined;
4003
+ visibility?: string | number | MotionValue<any> | undefined;
4004
+ webkitAlignContent?: string | number | MotionValue<any> | undefined;
4005
+ webkitAlignItems?: string | number | MotionValue<any> | undefined;
4006
+ webkitAlignSelf?: string | number | MotionValue<any> | undefined;
4007
+ webkitAnimation?: string | number | MotionValue<any> | undefined;
4008
+ webkitAnimationDelay?: string | number | MotionValue<any> | undefined;
4009
+ webkitAnimationDirection?: string | number | MotionValue<any> | undefined;
4010
+ webkitAnimationDuration?: string | number | MotionValue<any> | undefined;
4011
+ webkitAnimationFillMode?: string | number | MotionValue<any> | undefined;
4012
+ webkitAnimationIterationCount?: string | number | MotionValue<any> | undefined;
4013
+ webkitAnimationName?: string | number | MotionValue<any> | undefined;
4014
+ webkitAnimationPlayState?: string | number | MotionValue<any> | undefined;
4015
+ webkitAnimationTimingFunction?: string | number | MotionValue<any> | undefined;
4016
+ webkitAppearance?: string | number | MotionValue<any> | undefined;
4017
+ webkitBackfaceVisibility?: string | number | MotionValue<any> | undefined;
4018
+ webkitBackgroundClip?: string | number | MotionValue<any> | undefined;
4019
+ webkitBackgroundOrigin?: string | number | MotionValue<any> | undefined;
4020
+ webkitBackgroundSize?: string | number | MotionValue<any> | undefined;
4021
+ webkitBorderBottomLeftRadius?: string | number | MotionValue<any> | undefined;
4022
+ webkitBorderBottomRightRadius?: string | number | MotionValue<any> | undefined;
4023
+ webkitBorderRadius?: string | number | MotionValue<any> | undefined;
4024
+ webkitBorderTopLeftRadius?: string | number | MotionValue<any> | undefined;
4025
+ webkitBorderTopRightRadius?: string | number | MotionValue<any> | undefined;
4026
+ webkitBoxAlign?: string | number | MotionValue<any> | undefined;
4027
+ webkitBoxFlex?: string | number | MotionValue<any> | undefined;
4028
+ webkitBoxOrdinalGroup?: string | number | MotionValue<any> | undefined;
4029
+ webkitBoxOrient?: string | number | MotionValue<any> | undefined;
4030
+ webkitBoxPack?: string | number | MotionValue<any> | undefined;
4031
+ webkitBoxShadow?: string | number | MotionValue<any> | undefined;
4032
+ webkitBoxSizing?: string | number | MotionValue<any> | undefined;
4033
+ webkitFilter?: string | number | MotionValue<any> | undefined;
4034
+ webkitFlex?: string | number | MotionValue<any> | undefined;
4035
+ webkitFlexBasis?: string | number | MotionValue<any> | undefined;
4036
+ webkitFlexDirection?: string | number | MotionValue<any> | undefined;
4037
+ webkitFlexFlow?: string | number | MotionValue<any> | undefined;
4038
+ webkitFlexGrow?: string | number | MotionValue<any> | undefined;
4039
+ webkitFlexShrink?: string | number | MotionValue<any> | undefined;
4040
+ webkitFlexWrap?: string | number | MotionValue<any> | undefined;
4041
+ webkitJustifyContent?: string | number | MotionValue<any> | undefined;
4042
+ webkitLineClamp?: string | number | MotionValue<any> | undefined;
4043
+ webkitMask?: string | number | MotionValue<any> | undefined;
4044
+ webkitMaskBoxImage?: string | number | MotionValue<any> | undefined;
4045
+ webkitMaskBoxImageOutset?: string | number | MotionValue<any> | undefined;
4046
+ webkitMaskBoxImageRepeat?: string | number | MotionValue<any> | undefined;
4047
+ webkitMaskBoxImageSlice?: string | number | MotionValue<any> | undefined;
4048
+ webkitMaskBoxImageSource?: string | number | MotionValue<any> | undefined;
4049
+ webkitMaskBoxImageWidth?: string | number | MotionValue<any> | undefined;
4050
+ webkitMaskClip?: string | number | MotionValue<any> | undefined;
4051
+ webkitMaskComposite?: string | number | MotionValue<any> | undefined;
4052
+ webkitMaskImage?: string | number | MotionValue<any> | undefined;
4053
+ webkitMaskOrigin?: string | number | MotionValue<any> | undefined;
4054
+ webkitMaskPosition?: string | number | MotionValue<any> | undefined;
4055
+ webkitMaskRepeat?: string | number | MotionValue<any> | undefined;
4056
+ webkitMaskSize?: string | number | MotionValue<any> | undefined;
4057
+ webkitOrder?: string | number | MotionValue<any> | undefined;
4058
+ webkitPerspective?: string | number | MotionValue<any> | undefined;
4059
+ webkitPerspectiveOrigin?: string | number | MotionValue<any> | undefined;
4060
+ webkitTextFillColor?: string | number | MotionValue<any> | undefined;
4061
+ webkitTextSizeAdjust?: string | number | MotionValue<any> | undefined;
4062
+ webkitTextStroke?: string | number | MotionValue<any> | undefined;
4063
+ webkitTextStrokeColor?: string | number | MotionValue<any> | undefined;
4064
+ webkitTextStrokeWidth?: string | number | MotionValue<any> | undefined;
4065
+ webkitTransform?: string | number | MotionValue<any> | undefined;
4066
+ webkitTransformOrigin?: string | number | MotionValue<any> | undefined;
4067
+ webkitTransformStyle?: string | number | MotionValue<any> | undefined;
4068
+ webkitTransition?: string | number | MotionValue<any> | undefined;
4069
+ webkitTransitionDelay?: string | number | MotionValue<any> | undefined;
4070
+ webkitTransitionDuration?: string | number | MotionValue<any> | undefined;
4071
+ webkitTransitionProperty?: string | number | MotionValue<any> | undefined;
4072
+ webkitTransitionTimingFunction?: string | number | MotionValue<any> | undefined;
4073
+ webkitUserSelect?: string | number | MotionValue<any> | undefined;
4074
+ whiteSpace?: string | number | MotionValue<any> | undefined;
4075
+ whiteSpaceCollapse?: string | number | MotionValue<any> | undefined;
4076
+ widows?: string | number | MotionValue<any> | undefined;
4077
+ width?: string | number | MotionValue<any> | undefined;
4078
+ willChange?: string | number | MotionValue<any> | undefined;
4079
+ wordBreak?: string | number | MotionValue<any> | undefined;
4080
+ wordSpacing?: string | number | MotionValue<any> | undefined;
4081
+ wordWrap?: string | number | MotionValue<any> | undefined;
4082
+ writingMode?: string | number | MotionValue<any> | undefined;
4083
+ zIndex?: string | number | MotionValue<any> | undefined;
4084
+ zoom?: string | number | MotionValue<any> | undefined;
4085
+ accentHeight?: string | number | MotionValue<any> | undefined;
4086
+ accumulate?: string | number | MotionValue<any> | undefined;
4087
+ additive?: string | number | MotionValue<any> | undefined;
4088
+ allowReorder?: string | number | MotionValue<any> | undefined;
4089
+ alphabetic?: string | number | MotionValue<any> | undefined;
4090
+ amplitude?: string | number | MotionValue<any> | undefined;
4091
+ arabicForm?: string | number | MotionValue<any> | undefined;
4092
+ ascent?: string | number | MotionValue<any> | undefined;
4093
+ attributeName?: string | number | MotionValue<any> | undefined;
4094
+ attributeType?: string | number | MotionValue<any> | undefined;
4095
+ autoReverse?: string | number | MotionValue<any> | undefined;
4096
+ azimuth?: string | number | MotionValue<any> | undefined;
4097
+ baseFrequency?: string | number | MotionValue<any> | undefined;
4098
+ baseProfile?: string | number | MotionValue<any> | undefined;
4099
+ bbox?: string | number | MotionValue<any> | undefined;
4100
+ begin?: string | number | MotionValue<any> | undefined;
4101
+ bias?: string | number | MotionValue<any> | undefined;
4102
+ by?: string | number | MotionValue<any> | undefined;
4103
+ calcMode?: string | number | MotionValue<any> | undefined;
4104
+ capHeight?: string | number | MotionValue<any> | undefined;
4105
+ clipPathUnits?: string | number | MotionValue<any> | undefined;
4106
+ colorProfile?: string | number | MotionValue<any> | undefined;
4107
+ colorRendering?: string | number | MotionValue<any> | undefined;
4108
+ contentScriptType?: string | number | MotionValue<any> | undefined;
4109
+ contentStyleType?: string | number | MotionValue<any> | undefined;
4110
+ decelerate?: string | number | MotionValue<any> | undefined;
4111
+ descent?: string | number | MotionValue<any> | undefined;
4112
+ diffuseConstant?: string | number | MotionValue<any> | undefined;
4113
+ divisor?: string | number | MotionValue<any> | undefined;
4114
+ dur?: string | number | MotionValue<any> | undefined;
4115
+ dx?: string | number | MotionValue<any> | undefined;
4116
+ dy?: string | number | MotionValue<any> | undefined;
4117
+ edgeMode?: string | number | MotionValue<any> | undefined;
4118
+ elevation?: string | number | MotionValue<any> | undefined;
4119
+ enableBackground?: string | number | MotionValue<any> | undefined;
4120
+ end?: string | number | MotionValue<any> | undefined;
4121
+ exponent?: string | number | MotionValue<any> | undefined;
4122
+ externalResourcesRequired?: string | number | MotionValue<any> | undefined;
4123
+ filterRes?: string | number | MotionValue<any> | undefined;
4124
+ filterUnits?: string | number | MotionValue<any> | undefined;
4125
+ focusable?: string | number | MotionValue<any> | undefined;
4126
+ format?: string | number | MotionValue<any> | undefined;
4127
+ fr?: string | number | MotionValue<any> | undefined;
4128
+ fx?: string | number | MotionValue<any> | undefined;
4129
+ fy?: string | number | MotionValue<any> | undefined;
4130
+ g1?: string | number | MotionValue<any> | undefined;
4131
+ g2?: string | number | MotionValue<any> | undefined;
4132
+ glyphName?: string | number | MotionValue<any> | undefined;
4133
+ glyphOrientationHorizontal?: string | number | MotionValue<any> | undefined;
4134
+ glyphOrientationVertical?: string | number | MotionValue<any> | undefined;
4135
+ glyphRef?: string | number | MotionValue<any> | undefined;
4136
+ gradientTransform?: string | number | MotionValue<any> | undefined;
4137
+ gradientUnits?: string | number | MotionValue<any> | undefined;
4138
+ hanging?: string | number | MotionValue<any> | undefined;
4139
+ horizAdvX?: string | number | MotionValue<any> | undefined;
4140
+ horizOriginX?: string | number | MotionValue<any> | undefined;
4141
+ href?: string | number | MotionValue<any> | undefined;
4142
+ ideographic?: string | number | MotionValue<any> | undefined;
4143
+ in2?: string | number | MotionValue<any> | undefined;
4144
+ in?: string | number | MotionValue<any> | undefined;
4145
+ intercept?: string | number | MotionValue<any> | undefined;
4146
+ k1?: string | number | MotionValue<any> | undefined;
4147
+ k2?: string | number | MotionValue<any> | undefined;
4148
+ k3?: string | number | MotionValue<any> | undefined;
4149
+ k4?: string | number | MotionValue<any> | undefined;
4150
+ k?: string | number | MotionValue<any> | undefined;
4151
+ kernelMatrix?: string | number | MotionValue<any> | undefined;
4152
+ kernelUnitLength?: string | number | MotionValue<any> | undefined;
4153
+ kerning?: string | number | MotionValue<any> | undefined;
4154
+ keyPoints?: string | number | MotionValue<any> | undefined;
4155
+ keySplines?: string | number | MotionValue<any> | undefined;
4156
+ keyTimes?: string | number | MotionValue<any> | undefined;
4157
+ lengthAdjust?: string | number | MotionValue<any> | undefined;
4158
+ limitingConeAngle?: string | number | MotionValue<any> | undefined;
4159
+ local?: string | number | MotionValue<any> | undefined;
4160
+ markerHeight?: string | number | MotionValue<any> | undefined;
4161
+ markerUnits?: string | number | MotionValue<any> | undefined;
4162
+ markerWidth?: string | number | MotionValue<any> | undefined;
4163
+ maskContentUnits?: string | number | MotionValue<any> | undefined;
4164
+ maskUnits?: string | number | MotionValue<any> | undefined;
4165
+ mathematical?: string | number | MotionValue<any> | undefined;
4166
+ mode?: string | number | MotionValue<any> | undefined;
4167
+ numOctaves?: string | number | MotionValue<any> | undefined;
4168
+ operator?: string | number | MotionValue<any> | undefined;
4169
+ orient?: string | number | MotionValue<any> | undefined;
4170
+ orientation?: string | number | MotionValue<any> | undefined;
4171
+ origin?: string | number | MotionValue<any> | undefined;
4172
+ overlinePosition?: string | number | MotionValue<any> | undefined;
4173
+ overlineThickness?: string | number | MotionValue<any> | undefined;
4174
+ panose1?: string | number | MotionValue<any> | undefined;
4175
+ path?: string | number | MotionValue<any> | undefined;
4176
+ pathLength?: string | number | MotionValue<any> | undefined;
4177
+ patternContentUnits?: string | number | MotionValue<any> | undefined;
4178
+ patternTransform?: string | number | MotionValue<any> | undefined;
4179
+ patternUnits?: string | number | MotionValue<any> | undefined;
4180
+ points?: string | number | MotionValue<any> | undefined;
4181
+ pointsAtX?: string | number | MotionValue<any> | undefined;
4182
+ pointsAtY?: string | number | MotionValue<any> | undefined;
4183
+ pointsAtZ?: string | number | MotionValue<any> | undefined;
4184
+ preserveAlpha?: string | number | MotionValue<any> | undefined;
4185
+ preserveAspectRatio?: string | number | MotionValue<any> | undefined;
4186
+ primitiveUnits?: string | number | MotionValue<any> | undefined;
4187
+ radius?: string | number | MotionValue<any> | undefined;
4188
+ refX?: string | number | MotionValue<any> | undefined;
4189
+ refY?: string | number | MotionValue<any> | undefined;
4190
+ renderingIntent?: string | number | MotionValue<any> | undefined;
4191
+ repeatCount?: string | number | MotionValue<any> | undefined;
4192
+ repeatDur?: string | number | MotionValue<any> | undefined;
4193
+ requiredExtensions?: string | number | MotionValue<any> | undefined;
4194
+ requiredFeatures?: string | number | MotionValue<any> | undefined;
4195
+ restart?: string | number | MotionValue<any> | undefined;
4196
+ result?: string | number | MotionValue<any> | undefined;
4197
+ seed?: string | number | MotionValue<any> | undefined;
4198
+ slope?: string | number | MotionValue<any> | undefined;
4199
+ spacing?: string | number | MotionValue<any> | undefined;
4200
+ specularConstant?: string | number | MotionValue<any> | undefined;
4201
+ specularExponent?: string | number | MotionValue<any> | undefined;
4202
+ speed?: string | number | MotionValue<any> | undefined;
4203
+ spreadMethod?: string | number | MotionValue<any> | undefined;
4204
+ startOffset?: string | number | MotionValue<any> | undefined;
4205
+ stdDeviation?: string | number | MotionValue<any> | undefined;
4206
+ stemh?: string | number | MotionValue<any> | undefined;
4207
+ stemv?: string | number | MotionValue<any> | undefined;
4208
+ stitchTiles?: string | number | MotionValue<any> | undefined;
4209
+ strikethroughPosition?: string | number | MotionValue<any> | undefined;
4210
+ strikethroughThickness?: string | number | MotionValue<any> | undefined;
4211
+ surfaceScale?: string | number | MotionValue<any> | undefined;
4212
+ systemLanguage?: string | number | MotionValue<any> | undefined;
4213
+ tableValues?: string | number | MotionValue<any> | undefined;
4214
+ targetX?: string | number | MotionValue<any> | undefined;
4215
+ targetY?: string | number | MotionValue<any> | undefined;
4216
+ textLength?: string | number | MotionValue<any> | undefined;
4217
+ to?: string | number | MotionValue<any> | undefined;
4218
+ u1?: string | number | MotionValue<any> | undefined;
4219
+ u2?: string | number | MotionValue<any> | undefined;
4220
+ underlinePosition?: string | number | MotionValue<any> | undefined;
4221
+ underlineThickness?: string | number | MotionValue<any> | undefined;
4222
+ unicode?: string | number | MotionValue<any> | undefined;
4223
+ unicodeRange?: string | number | MotionValue<any> | undefined;
4224
+ unitsPerEm?: string | number | MotionValue<any> | undefined;
4225
+ vAlphabetic?: string | number | MotionValue<any> | undefined;
4226
+ values?: string | number | MotionValue<any> | undefined;
4227
+ version?: string | number | MotionValue<any> | undefined;
4228
+ vertAdvY?: string | number | MotionValue<any> | undefined;
4229
+ vertOriginX?: string | number | MotionValue<any> | undefined;
4230
+ vertOriginY?: string | number | MotionValue<any> | undefined;
4231
+ vHanging?: string | number | MotionValue<any> | undefined;
4232
+ vIdeographic?: string | number | MotionValue<any> | undefined;
4233
+ viewBox?: string | number | MotionValue<any> | undefined;
4234
+ viewTarget?: string | number | MotionValue<any> | undefined;
4235
+ vMathematical?: string | number | MotionValue<any> | undefined;
4236
+ widths?: string | number | MotionValue<any> | undefined;
4237
+ x1?: string | number | MotionValue<any> | undefined;
4238
+ x2?: string | number | MotionValue<any> | undefined;
4239
+ xChannelSelector?: string | number | MotionValue<any> | undefined;
4240
+ xHeight?: string | number | MotionValue<any> | undefined;
4241
+ xlinkActuate?: string | number | MotionValue<any> | undefined;
4242
+ xlinkArcrole?: string | number | MotionValue<any> | undefined;
4243
+ xlinkHref?: string | number | MotionValue<any> | undefined;
4244
+ xlinkRole?: string | number | MotionValue<any> | undefined;
4245
+ xlinkShow?: string | number | MotionValue<any> | undefined;
4246
+ xlinkTitle?: string | number | MotionValue<any> | undefined;
4247
+ xlinkType?: string | number | MotionValue<any> | undefined;
4248
+ xmlBase?: string | number | MotionValue<any> | undefined;
4249
+ xmlLang?: string | number | MotionValue<any> | undefined;
4250
+ xmlns?: string | number | MotionValue<any> | undefined;
4251
+ xmlnsXlink?: string | number | MotionValue<any> | undefined;
4252
+ xmlSpace?: string | number | MotionValue<any> | undefined;
4253
+ y1?: string | number | MotionValue<any> | undefined;
4254
+ y2?: string | number | MotionValue<any> | undefined;
4255
+ yChannelSelector?: string | number | MotionValue<any> | undefined;
4256
+ zoomAndPan?: string | number | MotionValue<any> | undefined;
4257
+ pathOffset?: string | number | MotionValue<any> | undefined;
4258
+ pathSpacing?: string | number | MotionValue<any> | undefined;
4259
+ }>;
4260
+ "aria-hidden"?: boolean | undefined;
4261
+ "aria-posinset"?: number | undefined;
4262
+ "aria-setsize"?: number | undefined;
4263
+ }>;
14
4264
  } | null;
4265
+ export interface TickerInfo {
4266
+ state: TickerState;
4267
+ gap: ComputedRef<number>;
4268
+ clampOffset: (offset: number) => number;
4269
+ renderedOffset: ComputedRef<MotionValue<number>>;
4270
+ }
4271
+ export declare const useTicker: <T extends TickerInfo | null | undefined = TickerInfo>(fallback?: T | undefined) => T extends null ? TickerInfo | null : TickerInfo, provideTicker: (contextValue: TickerInfo) => TickerInfo;