motion-plus-vue 1.4.0 → 1.5.0-beta.1

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