import * as vue from 'vue'; import { Ref, CSSProperties, UnwrapRef, Directive, App, PropType, VNode } from 'vue'; import { VueInstance, MaybeRef } from '@vueuse/core'; import { Component } from '@nuxt/schema'; import * as csstype from 'csstype'; import { MaybeRef as MaybeRef$1 } from '@vueuse/shared'; type GenericHandler = (...args: any) => void; /** * A generic subscription manager. */ declare class SubscriptionManager { private subscriptions; add(handler: Handler): () => boolean; notify( /** * Using ...args would be preferable but it's array creation and this * might be fired every frame. */ a?: Parameters[0], b?: Parameters[1], c?: Parameters[2]): void; clear(): void; } /** * `MotionValue` is used to track the state and velocity of motion values. */ declare class MotionValue { /** * The current state of the `MotionValue`. */ private current; /** * The previous state of the `MotionValue`. */ private prev; /** * Duration, in milliseconds, since last updating frame. */ private timeDelta; /** * Timestamp of the last time this `MotionValue` was updated. */ private lastUpdated; /** * Functions to notify when the `MotionValue` updates. */ updateSubscribers: SubscriptionManager>; /** * A reference to the currently-controlling Popmotion animation */ private stopAnimation?; /** * Tracks whether this value can output a velocity. */ private canTrackVelocity; /** * init - The initiating value * config - Optional configuration options */ constructor(init: V); /** * Adds a function that will be notified when the `MotionValue` is updated. * * It returns a function that, when called, will cancel the subscription. */ onChange(subscription: Subscriber): () => void; clearListeners(): void; /** * Sets the state of the `MotionValue`. * * @param v * @param render */ set(v: V): void; /** * Update and notify `MotionValue` subscribers. * * @param v * @param render */ updateAndNotify: (v: V) => void; /** * Returns the latest state of `MotionValue` * * @returns - The latest state of `MotionValue` */ get(): V; /** * Get previous value. * * @returns - The previous latest state of `MotionValue` */ getPrevious(): V; /** * Returns the latest velocity of `MotionValue` * * @returns - The latest velocity of `MotionValue`. Returns `0` if the state is non-numerical. */ getVelocity(): number; /** * Schedule a velocity check for the next frame. */ private scheduleVelocityCheck; /** * Updates `prev` with `current` if the value hasn't been updated this frame. * This ensures velocity calculations return `0`. */ private velocityCheck; /** * Registers a new animation to control this `MotionValue`. Only one * animation can drive a `MotionValue` at one time. */ start(animation: StartAnimation): Promise; /** * Stop the currently active animation. */ stop(): void; /** * Returns `true` if this value is currently animating. */ isAnimating(): boolean; /** * Clear the current animation reference. */ private clearAnimation; /** * Destroy and clean up subscribers to this `MotionValue`. */ destroy(): void; } type ResolvedKeyframesTarget = [null, ...number[]] | number[] | [null, ...string[]] | string[]; type KeyframesTarget = ResolvedKeyframesTarget | [null, ...CustomValueType[]] | CustomValueType[]; type ResolvedSingleTarget = string | number; type SingleTarget = ResolvedSingleTarget | CustomValueType; type ResolvedValueTarget = ResolvedSingleTarget | ResolvedKeyframesTarget; type ValueTarget = SingleTarget | KeyframesTarget; type Props = Record; type EasingFunction = (v: number) => number; type Easing = [number, number, number, number] | 'linear' | 'easeIn' | 'easeOut' | 'easeInOut' | 'circIn' | 'circOut' | 'circInOut' | 'backIn' | 'backOut' | 'backInOut' | 'anticipate' | EasingFunction; interface Orchestration { /** * Delay the animation by this duration (in seconds). Defaults to `0`. */ delay?: number; /** * Callback triggered on animation complete. */ onComplete?: () => void; /** * Should the value be set imediately */ immediate?: boolean; } interface Repeat { /** * The number of times to repeat the transition. Set to `Infinity` for perpetual repeating. * * Without setting `repeatType`, this will loop the animation. */ repeat?: number; /** * How to repeat the animation. This can be either: * * "loop": Repeats the animation from the start * * "reverse": Alternates between forward and backwards playback * * "mirror": Switchs `from` and `to` alternately */ repeatType?: 'loop' | 'reverse' | 'mirror'; /** * When repeating an animation, `repeatDelay` will set the * duration of the time to wait, in seconds, between each repetition. */ repeatDelay?: number; } /** * An animation that animates between two or more values over a specific duration of time. * This is the default animation for non-physical values like `color` and `opacity`. */ interface Tween extends Repeat { /** * Set `type` to `"tween"` to use a duration-based tween animation. * If any non-orchestration `transition` values are set without a `type` property, * this is used as the default animation. */ type?: 'tween'; /** * The duration of the tween animation. Set to `0.3` by default, 0r `0.8` if animating a series of keyframes. */ duration?: number; /** * The easing function to use. Set as one of the below. * * - The name of an existing easing function. * - An array of four numbers to define a cubic bezier curve. * - An easing function, that accepts and returns a value `0-1`. * * If the animating value is set as an array of multiple values for a keyframes * animation, `ease` can be set as an array of easing functions to set different easings between * each of those values. */ ease?: Easing | Easing[]; /** * The duration of time already elapsed in the animation. Set to `0` by * default. */ elapsed?: number; /** * When animating keyframes, `times` can be used to determine where in the animation each keyframe is reached. * Each value in `times` is a value between `0` and `1`, representing `duration`. * * There must be the same number of `times` as there are keyframes. * Defaults to an array of evenly-spread durations. */ times?: number[]; /** * When animating keyframes, `easings` can be used to define easing functions between each keyframe. This array should be one item fewer than the number of keyframes, as these easings apply to the transitions between the keyframes. */ easings?: Easing[]; /** * The value to animate from. * By default, this is the current state of the animating value. */ from?: number | string; to?: number | string | ValueTarget; velocity?: number; delay?: number; } /** * An animation that simulates spring physics for realistic motion. * This is the default animation for physical values like `x`, `y`, `scale` and `rotate`. */ interface Spring extends Repeat { /** * Set `type` to `"spring"` to animate using spring physics for natural * movement. Type is set to `"spring"` by default. */ type: 'spring'; /** * Stiffness of the spring. Higher values will create more sudden movement. * Set to `100` by default. */ stiffness?: number; /** * Strength of opposing force. If set to 0, spring will oscillate * indefinitely. Set to `10` by default. */ damping?: number; /** * Mass of the moving object. Higher values will result in more lethargic * movement. Set to `1` by default. */ mass?: number; /** * The duration of the animation, defined in seconds. Spring animations can be a maximum of 10 seconds. * * If `bounce` is set, this defaults to `0.8`. * * Note: `duration` and `bounce` will be overridden if `stiffness`, `damping` or `mass` are set. */ duration?: number; /** * `bounce` determines the "bounciness" of a spring animation. * * `0` is no bounce, and `1` is extremely bouncy. * * If `duration` is set, this defaults to `0.25`. * * Note: `bounce` and `duration` will be overridden if `stiffness`, `damping` or `mass` are set. */ bounce?: number; /** * End animation if absolute speed (in units per second) drops below this * value and delta is smaller than `restDelta`. Set to `0.01` by default. */ restSpeed?: number; /** * End animation if distance is below this value and speed is below * `restSpeed`. When animation ends, spring gets “snapped” to. Set to * `0.01` by default. */ restDelta?: number; /** * The value to animate from. * By default, this is the initial state of the animating value. */ from?: number | string; to?: number | string | ValueTarget; /** * The initial velocity of the spring. By default this is the current velocity of the component. */ velocity?: number; delay?: number; } /** * An animation that decelerates a value based on its initial velocity, * usually used to implement inertial scrolling. * * Optionally, `min` and `max` boundaries can be defined, and inertia * will snap to these with a spring animation. * * This animation will automatically precalculate a target value, * which can be modified with the `modifyTarget` property. * * This allows you to add snap-to-grid or similar functionality. * * Inertia is also the animation used for `dragTransition`, and can be configured via that prop. */ interface Inertia { /** * Set `type` to animate using the inertia animation. Set to `"tween"` by * default. This can be used for natural deceleration, like momentum scrolling. */ type: 'inertia'; /** * A function that receives the automatically-calculated target and returns a new one. Useful for snapping the target to a grid. */ modifyTarget?: (v: number) => number; /** * If `min` or `max` is set, this affects the stiffness of the bounce * spring. Higher values will create more sudden movement. Set to `500` by * default. */ bounceStiffness?: number; /** * If `min` or `max` is set, this affects the damping of the bounce spring. * If set to `0`, spring will oscillate indefinitely. Set to `10` by * default. */ bounceDamping?: number; /** * A higher power value equals a further target. Set to `0.8` by default. */ power?: number; /** * Adjusting the time constant will change the duration of the * deceleration, thereby affecting its feel. Set to `700` by default. */ timeConstant?: number; /** * End the animation if the distance to the animation target is below this value, and the absolute speed is below `restSpeed`. * When the animation ends, the value gets snapped to the animation target. Set to `0.01` by default. * Generally the default values provide smooth animation endings, only in rare cases should you need to customize these. */ restDelta?: number; /** * Minimum constraint. If set, the value will "bump" against this value (or immediately spring to it if the animation starts as less than this value). */ min?: number; /** * Maximum constraint. If set, the value will "bump" against this value (or immediately snap to it, if the initial animation value exceeds this value). */ max?: number; /** * The value to animate from. By default, this is the current state of the animating value. */ from?: number | string; /** * The initial velocity of the animation. * By default this is the current velocity of the component. */ velocity?: number; delay?: number; } /** * Keyframes tweens between multiple `values`. * * These tweens can be arranged using the `duration`, `easings`, and `times` properties. */ interface Keyframes { /** * Set `type` to `"keyframes"` to animate using the keyframes animation. * Set to `"tween"` by default. This can be used to animate between a series of values. */ type: 'keyframes'; /** * An array of values to animate between. */ values: KeyframesTarget; /** * An array of numbers between 0 and 1, where `1` represents the `total` duration. * * Each value represents at which point during the animation each item in the animation target should be hit, so the array should be the same length as `values`. * * Defaults to an array of evenly-spread durations. */ times?: number[]; /** * An array of easing functions for each generated tween, or a single easing function applied to all tweens. * * This array should be one item less than `values`, as these easings apply to the transitions *between* the `values`. */ ease?: Easing | Easing[]; /** * Popmotion's easing prop to define individual easings. `ease` will be mapped to this prop in keyframes animations. */ easings?: Easing | Easing[]; elapsed?: number; /** * The total duration of the animation. Set to `0.3` by default. */ duration?: number; repeatDelay?: number; from?: number | string; to?: number | string | ValueTarget; velocity?: number; delay?: number; } type PopmotionTransitionProps = Tween | Spring | Keyframes | Inertia; type PermissiveTransitionDefinition = Record; type TransitionDefinition = Tween | Spring | Keyframes | Inertia | PermissiveTransitionDefinition; type TransitionMap = Orchestration & Record; /** * Transition props */ type Transition = (Orchestration & Repeat & TransitionDefinition) | (Orchestration & Repeat & TransitionMap); type MakeCustomValueType = { [K in keyof T]: T[K] | CustomValueType; }; type Target = MakeCustomValueType; type MakeKeyframes = { [K in keyof T]: T[K] | T[K][] | [null, ...T[K][]]; }; type TargetWithKeyframes = MakeKeyframes; /** * An object that specifies values to animate to. Each value may be set either as * a single value, or an array of values. */ type TargetAndTransition = TargetWithKeyframes & { transition?: Transition; transitionEnd?: Target; }; type TargetResolver = (custom: any, current: Target, velocity: Target) => TargetAndTransition; interface CustomValueType { mix: (from: any, to: any) => (p: number) => number | string; toValue: () => number | string; } type MotionValuesMap = { [key in keyof PermissiveMotionProperties]: MotionValue; }; interface MotionTransitions { /** * Stop ongoing transitions for the current element. */ stop: (keys?: string | string[]) => void; /** * Start a transition, push it to the `transitions` array. * * @param transition * @param values */ push: (key: string, value: ResolvedValueTarget, target: MotionProperties, transition: Transition, onComplete?: () => void) => void; /** * @internal */ motionValues: Ref; } /** * Permissive properties keys */ type PropertiesKeys = Record; /** * SVG Supported properties */ interface SVGPathProperties { pathLength?: number; pathOffset?: number; pathSpacing?: number; } /** * Transform properties */ type TransformValue = string | number; interface TransformProperties { x?: TransformValue | TransformValue[]; y?: TransformValue | TransformValue[]; z?: TransformValue | TransformValue[]; translateX?: TransformValue | TransformValue[]; translateY?: TransformValue | TransformValue[]; translateZ?: TransformValue | TransformValue[]; rotate?: TransformValue | TransformValue[]; rotateX?: TransformValue | TransformValue[]; rotateY?: TransformValue | TransformValue[]; rotateZ?: TransformValue | TransformValue[]; scale?: TransformValue | TransformValue[]; scaleX?: TransformValue | TransformValue[]; scaleY?: TransformValue | TransformValue[]; scaleZ?: TransformValue | TransformValue[]; skew?: TransformValue | TransformValue[]; skewX?: TransformValue | TransformValue[]; skewY?: TransformValue | TransformValue[]; originX?: TransformValue | TransformValue[]; originY?: TransformValue | TransformValue[]; originZ?: TransformValue | TransformValue[]; perspective?: TransformValue | TransformValue[]; transformPerspective?: TransformValue | TransformValue[]; } /** * Relevant styling properties */ type Omit = Pick>; type StyleProperties = Omit; /** * Available properties for useMotion variants */ type MotionProperties = StyleProperties | TransformProperties | SVGPathProperties; /** * Permissive properties for useSpring */ type PermissiveMotionProperties = MotionProperties & Record; /** * Variant */ type Variant = { transition?: Transition; } & MotionProperties; /** * Motion variants object */ type MotionVariants = { initial?: Variant; enter?: Variant; leave?: Variant; visible?: Variant; visibleOnce?: Variant; hovered?: Variant; tapped?: Variant; focused?: Variant; } & { [key in T]?: Variant; }; type PermissiveTarget = VueInstance | MotionTarget; type MotionTarget = HTMLElement | SVGElement | null | undefined; interface MotionInstance> extends MotionControls { target: MaybeRef; variants: MaybeRef; variant: Ref; state: Ref; motionProperties: UnwrapRef; } interface UseMotionOptions { syncVariants?: boolean; lifeCycleHooks?: boolean; visibilityHooks?: boolean; eventListeners?: boolean; } interface MotionControls> { /** * Apply a variant declaration and execute the resolved transitions. * * @param variant * @returns Promise */ apply: (variant: Variant | keyof V) => Promise | undefined; /** * Apply a variant declaration without transitions. * * @param variant */ set: (variant: Variant | keyof V) => void; /** * Stop all the ongoing transitions for the current element. */ stop: (keys?: string | string[]) => void; /** * Helper to be passed to leave event. * * @param done */ leave: (done: () => void) => void; /** * Computed reference reactive to the animation state of motion controls. */ isAnimating: any; } interface SpringControls { /** * Apply new values with transitions. * * @param variant */ set: (properties: MotionProperties) => void; /** * Stop all transitions. * * @param variant */ stop: (key?: string | string[]) => void; /** * Object containing all the current values of the spring. * * @param */ values: MotionProperties; } type MotionInstanceBindings> = Record>; declare module 'vue' { interface ComponentCustomProperties { $motions?: MotionInstanceBindings; } } declare module '@vue/runtime-dom' { interface HTMLAttributes { variants?: MotionVariants; initial?: Variant; enter?: Variant; leave?: Variant; visible?: Variant; visibleOnce?: Variant; hovered?: Variant; tapped?: Variant; focused?: Variant; } } interface MotionPluginOptions { directives?: Record>; excludePresets?: boolean; } interface StopAnimation { stop: () => void; } type Transformer = (v: T) => T; type Subscriber = (v: T) => void; type PassiveEffect = (v: T, safeSetter: (v: T) => void) => void; type StartAnimation = (complete?: () => void) => StopAnimation; interface ModuleOptions { directives?: Record>; excludePresets?: boolean; } declare function directive(variants?: MotionVariants, isPreset?: boolean): Directive; declare const MotionPlugin: { install(app: App, options?: MotionPluginOptions): void; }; /** * Convert a string to a slug. * * Source: https://gist.github.com/hagemann/382adfc57adbd5af078dc93feef01fe1 * Credits: @hagemann * * Edited to transform camel naming to slug with `-`. */ declare function slugify(str: string): string; /** * Check whether an object is a Motion Instance or not. * * Can be useful while building packages based on @vueuse/motion. * * @param obj * @returns bool */ declare function isMotionInstance>(obj: any): obj is MotionInstance; declare const fade: MotionVariants; declare const fadeVisible: MotionVariants; declare const fadeVisibleOnce: MotionVariants; declare const pop: MotionVariants; declare const popVisible: MotionVariants; declare const popVisibleOnce: MotionVariants; declare const rollLeft: MotionVariants; declare const rollVisibleLeft: MotionVariants; declare const rollVisibleOnceLeft: MotionVariants; declare const rollRight: MotionVariants; declare const rollVisibleRight: MotionVariants; declare const rollVisibleOnceRight: MotionVariants; declare const rollTop: MotionVariants; declare const rollVisibleTop: MotionVariants; declare const rollVisibleOnceTop: MotionVariants; declare const rollBottom: MotionVariants; declare const rollVisibleBottom: MotionVariants; declare const rollVisibleOnceBottom: MotionVariants; declare const slideLeft: MotionVariants; declare const slideVisibleLeft: MotionVariants; declare const slideVisibleOnceLeft: MotionVariants; declare const slideRight: MotionVariants; declare const slideVisibleRight: MotionVariants; declare const slideVisibleOnceRight: MotionVariants; declare const slideTop: MotionVariants; declare const slideVisibleTop: MotionVariants; declare const slideVisibleOnceTop: MotionVariants; declare const slideBottom: MotionVariants; declare const slideVisibleBottom: MotionVariants; declare const slideVisibleOnceBottom: MotionVariants; declare const _default$1: vue.DefineComponent<{ is: { type: PropType; default: string; }; preset: { type: PropType; required: boolean; }; instance: { type: PropType>>; required: boolean; }; variants: { type: PropType>; required: boolean; }; initial: { type: PropType; required: boolean; }; enter: { type: PropType; required: boolean; }; leave: { type: PropType; required: boolean; }; visible: { type: PropType; required: boolean; }; visibleOnce: { type: PropType; required: boolean; }; hovered: { type: PropType; required: boolean; }; tapped: { type: PropType; required: boolean; }; focused: { type: PropType; required: boolean; }; delay: { type: PropType; required: boolean; }; duration: { type: PropType; required: boolean; }; }, () => vue.VNode, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly; default: string; }; preset: { type: PropType; required: boolean; }; instance: { type: PropType>>; required: boolean; }; variants: { type: PropType>; required: boolean; }; initial: { type: PropType; required: boolean; }; enter: { type: PropType; required: boolean; }; leave: { type: PropType; required: boolean; }; visible: { type: PropType; required: boolean; }; visibleOnce: { type: PropType; required: boolean; }; hovered: { type: PropType; required: boolean; }; tapped: { type: PropType; required: boolean; }; focused: { type: PropType; required: boolean; }; delay: { type: PropType; required: boolean; }; duration: { type: PropType; required: boolean; }; }>>, { is: string | Component; }, {}>; declare const _default: vue.DefineComponent<{ is: { type: PropType; required: false; }; preset: { type: PropType; required: boolean; }; instance: { type: PropType>>; required: boolean; }; variants: { type: PropType>; required: boolean; }; initial: { type: PropType; required: boolean; }; enter: { type: PropType; required: boolean; }; leave: { type: PropType; required: boolean; }; visible: { type: PropType; required: boolean; }; visibleOnce: { type: PropType; required: boolean; }; hovered: { type: PropType; required: boolean; }; tapped: { type: PropType; required: boolean; }; focused: { type: PropType; required: boolean; }; delay: { type: PropType; required: boolean; }; duration: { type: PropType; required: boolean; }; }, () => VNode | VNode[], unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly; required: false; }; preset: { type: PropType; required: boolean; }; instance: { type: PropType>>; required: boolean; }; variants: { type: PropType>; required: boolean; }; initial: { type: PropType; required: boolean; }; enter: { type: PropType; required: boolean; }; leave: { type: PropType; required: boolean; }; visible: { type: PropType; required: boolean; }; visibleOnce: { type: PropType; required: boolean; }; hovered: { type: PropType; required: boolean; }; tapped: { type: PropType; required: boolean; }; focused: { type: PropType; required: boolean; }; delay: { type: PropType; required: boolean; }; duration: { type: PropType; required: boolean; }; }>>, {}, {}>; /** * Reactive style object implementing all native CSS properties. * * @param props */ declare function reactiveStyle(props?: StyleProperties): { state: { [x: `--${string}`]: string | number | undefined; filter?: csstype.Property.Filter | undefined; fill?: csstype.Property.Fill | undefined; accentColor?: csstype.Property.AccentColor | undefined; alignContent?: csstype.Property.AlignContent | undefined; alignItems?: csstype.Property.AlignItems | undefined; alignSelf?: csstype.Property.AlignSelf | undefined; alignTracks?: csstype.Property.AlignTracks | undefined; animationComposition?: csstype.Property.AnimationComposition | undefined; animationDelay?: csstype.Property.AnimationDelay | undefined; animationDirection?: csstype.Property.AnimationDirection | undefined; animationDuration?: csstype.Property.AnimationDuration | undefined; animationFillMode?: csstype.Property.AnimationFillMode | undefined; animationIterationCount?: csstype.Property.AnimationIterationCount | undefined; animationName?: csstype.Property.AnimationName | undefined; animationPlayState?: csstype.Property.AnimationPlayState | undefined; animationRangeEnd?: csstype.Property.AnimationRangeEnd | undefined; animationRangeStart?: csstype.Property.AnimationRangeStart | undefined; animationTimeline?: csstype.Property.AnimationTimeline | undefined; animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; appearance?: csstype.Property.Appearance | undefined; aspectRatio?: csstype.Property.AspectRatio | undefined; backdropFilter?: csstype.Property.BackdropFilter | undefined; backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined; backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined; backgroundClip?: csstype.Property.BackgroundClip | undefined; backgroundColor?: csstype.Property.BackgroundColor | undefined; backgroundImage?: csstype.Property.BackgroundImage | undefined; backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; backgroundPositionX?: csstype.Property.BackgroundPositionX | undefined; backgroundPositionY?: csstype.Property.BackgroundPositionY | undefined; backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined; backgroundSize?: csstype.Property.BackgroundSize | undefined; blockOverflow?: csstype.Property.BlockOverflow | undefined; blockSize?: csstype.Property.BlockSize | undefined; borderBlockColor?: csstype.Property.BorderBlockColor | undefined; borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined; borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined; borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth | undefined; borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined; borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined; borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth | undefined; borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined; borderBlockWidth?: csstype.Property.BorderBlockWidth | undefined; borderBottomColor?: csstype.Property.BorderBottomColor | undefined; borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined; borderBottomWidth?: csstype.Property.BorderBottomWidth | undefined; borderCollapse?: csstype.Property.BorderCollapse | undefined; borderEndEndRadius?: csstype.Property.BorderEndEndRadius | undefined; borderEndStartRadius?: csstype.Property.BorderEndStartRadius | undefined; borderImageOutset?: csstype.Property.BorderImageOutset | undefined; borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined; borderImageSlice?: csstype.Property.BorderImageSlice | undefined; borderImageSource?: csstype.Property.BorderImageSource | undefined; borderImageWidth?: csstype.Property.BorderImageWidth | undefined; borderInlineColor?: csstype.Property.BorderInlineColor | undefined; borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined; borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined; borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth | undefined; borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined; borderInlineWidth?: csstype.Property.BorderInlineWidth | undefined; borderLeftColor?: csstype.Property.BorderLeftColor | undefined; borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined; borderLeftWidth?: csstype.Property.BorderLeftWidth | undefined; borderRightColor?: csstype.Property.BorderRightColor | undefined; borderRightStyle?: csstype.Property.BorderRightStyle | undefined; borderRightWidth?: csstype.Property.BorderRightWidth | undefined; borderSpacing?: csstype.Property.BorderSpacing | undefined; borderStartEndRadius?: csstype.Property.BorderStartEndRadius | undefined; borderStartStartRadius?: csstype.Property.BorderStartStartRadius | undefined; borderTopColor?: csstype.Property.BorderTopColor | undefined; borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; borderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; borderTopStyle?: csstype.Property.BorderTopStyle | undefined; borderTopWidth?: csstype.Property.BorderTopWidth | undefined; bottom?: csstype.Property.Bottom | undefined; boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; boxShadow?: csstype.Property.BoxShadow | undefined; boxSizing?: csstype.Property.BoxSizing | undefined; breakAfter?: csstype.Property.BreakAfter | undefined; breakBefore?: csstype.Property.BreakBefore | undefined; breakInside?: csstype.Property.BreakInside | undefined; captionSide?: csstype.Property.CaptionSide | undefined; caretColor?: csstype.Property.CaretColor | undefined; caretShape?: csstype.Property.CaretShape | undefined; clear?: csstype.Property.Clear | undefined; clipPath?: csstype.Property.ClipPath | undefined; color?: csstype.Property.Color | undefined; colorAdjust?: csstype.Property.PrintColorAdjust | undefined; colorScheme?: csstype.Property.ColorScheme | undefined; columnCount?: csstype.Property.ColumnCount | undefined; columnFill?: csstype.Property.ColumnFill | undefined; columnGap?: csstype.Property.ColumnGap | undefined; columnRuleColor?: csstype.Property.ColumnRuleColor | undefined; columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; columnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; columnSpan?: csstype.Property.ColumnSpan | undefined; columnWidth?: csstype.Property.ColumnWidth | undefined; contain?: csstype.Property.Contain | undefined; containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize | undefined; containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight | undefined; containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize | undefined; containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth | undefined; containerName?: csstype.Property.ContainerName | undefined; containerType?: csstype.Property.ContainerType | undefined; content?: csstype.Property.Content | undefined; contentVisibility?: csstype.Property.ContentVisibility | undefined; counterIncrement?: csstype.Property.CounterIncrement | undefined; counterReset?: csstype.Property.CounterReset | undefined; counterSet?: csstype.Property.CounterSet | undefined; cursor?: csstype.Property.Cursor | undefined; direction?: csstype.Property.Direction | undefined; display?: csstype.Property.Display | undefined; emptyCells?: csstype.Property.EmptyCells | undefined; flexBasis?: csstype.Property.FlexBasis | undefined; flexDirection?: csstype.Property.FlexDirection | undefined; flexGrow?: csstype.Property.FlexGrow | undefined; flexShrink?: csstype.Property.FlexShrink | undefined; flexWrap?: csstype.Property.FlexWrap | undefined; float?: csstype.Property.Float | undefined; fontFamily?: csstype.Property.FontFamily | undefined; fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; fontKerning?: csstype.Property.FontKerning | undefined; fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined; fontPalette?: csstype.Property.FontPalette | undefined; fontSize?: csstype.Property.FontSize | undefined; fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined; fontSmooth?: csstype.Property.FontSmooth | undefined; fontStretch?: csstype.Property.FontStretch | undefined; fontStyle?: csstype.Property.FontStyle | undefined; fontSynthesis?: csstype.Property.FontSynthesis | undefined; fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined; fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined; fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined; fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined; fontVariant?: csstype.Property.FontVariant | undefined; fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined; fontVariantCaps?: csstype.Property.FontVariantCaps | undefined; fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined; fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined; fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined; fontVariantPosition?: csstype.Property.FontVariantPosition | undefined; fontVariationSettings?: csstype.Property.FontVariationSettings | undefined; fontWeight?: csstype.Property.FontWeight | undefined; forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined; gridAutoColumns?: csstype.Property.GridAutoColumns | undefined; gridAutoFlow?: csstype.Property.GridAutoFlow | undefined; gridAutoRows?: csstype.Property.GridAutoRows | undefined; gridColumnEnd?: csstype.Property.GridColumnEnd | undefined; gridColumnStart?: csstype.Property.GridColumnStart | undefined; gridRowEnd?: csstype.Property.GridRowEnd | undefined; gridRowStart?: csstype.Property.GridRowStart | undefined; gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined; gridTemplateColumns?: csstype.Property.GridTemplateColumns | undefined; gridTemplateRows?: csstype.Property.GridTemplateRows | undefined; hangingPunctuation?: csstype.Property.HangingPunctuation | undefined; height?: csstype.Property.Height | undefined; hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined; hyphens?: csstype.Property.Hyphens | undefined; imageOrientation?: csstype.Property.ImageOrientation | undefined; imageRendering?: csstype.Property.ImageRendering | undefined; imageResolution?: csstype.Property.ImageResolution | undefined; initialLetter?: csstype.Property.InitialLetter | undefined; inlineSize?: csstype.Property.InlineSize | undefined; inputSecurity?: csstype.Property.InputSecurity | undefined; insetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; insetBlockStart?: csstype.Property.InsetBlockStart | undefined; insetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; insetInlineStart?: csstype.Property.InsetInlineStart | undefined; isolation?: csstype.Property.Isolation | undefined; justifyContent?: csstype.Property.JustifyContent | undefined; justifyItems?: csstype.Property.JustifyItems | undefined; justifySelf?: csstype.Property.JustifySelf | undefined; justifyTracks?: csstype.Property.JustifyTracks | undefined; left?: csstype.Property.Left | undefined; letterSpacing?: csstype.Property.LetterSpacing | undefined; lineBreak?: csstype.Property.LineBreak | undefined; lineHeight?: csstype.Property.LineHeight | undefined; lineHeightStep?: csstype.Property.LineHeightStep | undefined; listStyleImage?: csstype.Property.ListStyleImage | undefined; listStylePosition?: csstype.Property.ListStylePosition | undefined; listStyleType?: csstype.Property.ListStyleType | undefined; marginBlockEnd?: csstype.Property.MarginBlockEnd | undefined; marginBlockStart?: csstype.Property.MarginBlockStart | undefined; marginBottom?: csstype.Property.MarginBottom | undefined; marginInlineEnd?: csstype.Property.MarginInlineEnd | undefined; marginInlineStart?: csstype.Property.MarginInlineStart | undefined; marginLeft?: csstype.Property.MarginLeft | undefined; marginRight?: csstype.Property.MarginRight | undefined; marginTop?: csstype.Property.MarginTop | undefined; marginTrim?: csstype.Property.MarginTrim | undefined; maskBorderMode?: csstype.Property.MaskBorderMode | undefined; maskBorderOutset?: csstype.Property.MaskBorderOutset | undefined; maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined; maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined; maskBorderSource?: csstype.Property.MaskBorderSource | undefined; maskBorderWidth?: csstype.Property.MaskBorderWidth | undefined; maskClip?: csstype.Property.MaskClip | undefined; maskComposite?: csstype.Property.MaskComposite | undefined; maskImage?: csstype.Property.MaskImage | undefined; maskMode?: csstype.Property.MaskMode | undefined; maskOrigin?: csstype.Property.MaskOrigin | undefined; maskPosition?: csstype.Property.MaskPosition | undefined; maskRepeat?: csstype.Property.MaskRepeat | undefined; maskSize?: csstype.Property.MaskSize | undefined; maskType?: csstype.Property.MaskType | undefined; masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined; mathDepth?: csstype.Property.MathDepth | undefined; mathShift?: csstype.Property.MathShift | undefined; mathStyle?: csstype.Property.MathStyle | undefined; maxBlockSize?: csstype.Property.MaxBlockSize | undefined; maxHeight?: csstype.Property.MaxHeight | undefined; maxInlineSize?: csstype.Property.MaxInlineSize | undefined; maxLines?: csstype.Property.MaxLines | undefined; maxWidth?: csstype.Property.MaxWidth | undefined; minBlockSize?: csstype.Property.MinBlockSize | undefined; minHeight?: csstype.Property.MinHeight | undefined; minInlineSize?: csstype.Property.MinInlineSize | undefined; minWidth?: csstype.Property.MinWidth | undefined; mixBlendMode?: csstype.Property.MixBlendMode | undefined; motionDistance?: csstype.Property.OffsetDistance | undefined; motionPath?: csstype.Property.OffsetPath | undefined; motionRotation?: csstype.Property.OffsetRotate | undefined; objectFit?: csstype.Property.ObjectFit | undefined; objectPosition?: csstype.Property.ObjectPosition | undefined; offsetAnchor?: csstype.Property.OffsetAnchor | undefined; offsetDistance?: csstype.Property.OffsetDistance | undefined; offsetPath?: csstype.Property.OffsetPath | undefined; offsetPosition?: csstype.Property.OffsetPosition | undefined; offsetRotate?: csstype.Property.OffsetRotate | undefined; offsetRotation?: csstype.Property.OffsetRotate | undefined; opacity?: csstype.Property.Opacity | undefined; order?: csstype.Property.Order | undefined; orphans?: csstype.Property.Orphans | undefined; outlineColor?: csstype.Property.OutlineColor | undefined; outlineOffset?: csstype.Property.OutlineOffset | undefined; outlineStyle?: csstype.Property.OutlineStyle | undefined; outlineWidth?: csstype.Property.OutlineWidth | undefined; overflowAnchor?: csstype.Property.OverflowAnchor | undefined; overflowBlock?: csstype.Property.OverflowBlock | undefined; overflowClipBox?: csstype.Property.OverflowClipBox | undefined; overflowClipMargin?: csstype.Property.OverflowClipMargin | undefined; overflowInline?: csstype.Property.OverflowInline | undefined; overflowWrap?: csstype.Property.OverflowWrap | undefined; overflowX?: csstype.Property.OverflowX | undefined; overflowY?: csstype.Property.OverflowY | undefined; overlay?: csstype.Property.Overlay | undefined; overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined; overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined; overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined; overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined; paddingBlockEnd?: csstype.Property.PaddingBlockEnd | undefined; paddingBlockStart?: csstype.Property.PaddingBlockStart | undefined; paddingBottom?: csstype.Property.PaddingBottom | undefined; paddingInlineEnd?: csstype.Property.PaddingInlineEnd | undefined; paddingInlineStart?: csstype.Property.PaddingInlineStart | undefined; paddingLeft?: csstype.Property.PaddingLeft | undefined; paddingRight?: csstype.Property.PaddingRight | undefined; paddingTop?: csstype.Property.PaddingTop | undefined; page?: csstype.Property.Page | undefined; pageBreakAfter?: csstype.Property.PageBreakAfter | undefined; pageBreakBefore?: csstype.Property.PageBreakBefore | undefined; pageBreakInside?: csstype.Property.PageBreakInside | undefined; paintOrder?: csstype.Property.PaintOrder | undefined; perspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; pointerEvents?: csstype.Property.PointerEvents | undefined; position?: csstype.Property.Position | undefined; printColorAdjust?: csstype.Property.PrintColorAdjust | undefined; quotes?: csstype.Property.Quotes | undefined; resize?: csstype.Property.Resize | undefined; right?: csstype.Property.Right | undefined; rowGap?: csstype.Property.RowGap | undefined; rubyAlign?: csstype.Property.RubyAlign | undefined; rubyMerge?: csstype.Property.RubyMerge | undefined; rubyPosition?: csstype.Property.RubyPosition | undefined; scrollBehavior?: csstype.Property.ScrollBehavior | undefined; scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd | undefined; scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart | undefined; scrollMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd | undefined; scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart | undefined; scrollMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd | undefined; scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart | undefined; scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom | undefined; scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd | undefined; scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart | undefined; scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft | undefined; scrollPaddingRight?: csstype.Property.ScrollPaddingRight | undefined; scrollPaddingTop?: csstype.Property.ScrollPaddingTop | undefined; scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined; scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollSnapMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollSnapMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined; scrollSnapType?: csstype.Property.ScrollSnapType | undefined; scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined; scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined; scrollbarColor?: csstype.Property.ScrollbarColor | undefined; scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined; scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined; shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined; shapeMargin?: csstype.Property.ShapeMargin | undefined; shapeOutside?: csstype.Property.ShapeOutside | undefined; tabSize?: csstype.Property.TabSize | undefined; tableLayout?: csstype.Property.TableLayout | undefined; textAlign?: csstype.Property.TextAlign | undefined; textAlignLast?: csstype.Property.TextAlignLast | undefined; textCombineUpright?: csstype.Property.TextCombineUpright | undefined; textDecorationColor?: csstype.Property.TextDecorationColor | undefined; textDecorationLine?: csstype.Property.TextDecorationLine | undefined; textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined; textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; textDecorationThickness?: csstype.Property.TextDecorationThickness | undefined; textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; textIndent?: csstype.Property.TextIndent | undefined; textJustify?: csstype.Property.TextJustify | undefined; textOrientation?: csstype.Property.TextOrientation | undefined; textOverflow?: csstype.Property.TextOverflow | undefined; textRendering?: csstype.Property.TextRendering | undefined; textShadow?: csstype.Property.TextShadow | undefined; textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; textTransform?: csstype.Property.TextTransform | undefined; textUnderlineOffset?: csstype.Property.TextUnderlineOffset | undefined; textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; textWrap?: csstype.Property.TextWrap | undefined; timelineScope?: csstype.Property.TimelineScope | undefined; top?: csstype.Property.Top | undefined; touchAction?: csstype.Property.TouchAction | undefined; transitionBehavior?: csstype.Property.TransitionBehavior | undefined; transitionDelay?: csstype.Property.TransitionDelay | undefined; transitionDuration?: csstype.Property.TransitionDuration | undefined; transitionProperty?: csstype.Property.TransitionProperty | undefined; transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; translate?: csstype.Property.Translate | undefined; unicodeBidi?: csstype.Property.UnicodeBidi | undefined; userSelect?: csstype.Property.UserSelect | undefined; verticalAlign?: csstype.Property.VerticalAlign | undefined; viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined; viewTimelineInset?: csstype.Property.ViewTimelineInset | undefined; viewTimelineName?: csstype.Property.ViewTimelineName | undefined; viewTransitionName?: csstype.Property.ViewTransitionName | undefined; visibility?: csstype.Property.Visibility | undefined; whiteSpace?: csstype.Property.WhiteSpace | undefined; whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined; whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined; widows?: csstype.Property.Widows | undefined; width?: csstype.Property.Width | undefined; willChange?: csstype.Property.WillChange | undefined; wordBreak?: csstype.Property.WordBreak | undefined; wordSpacing?: csstype.Property.WordSpacing | undefined; wordWrap?: csstype.Property.WordWrap | undefined; writingMode?: csstype.Property.WritingMode | undefined; zIndex?: csstype.Property.ZIndex | undefined; zoom?: csstype.Property.Zoom | undefined; all?: csstype.Globals | undefined; animation?: csstype.Property.Animation | undefined; animationRange?: csstype.Property.AnimationRange | undefined; background?: csstype.Property.Background | undefined; backgroundPosition?: csstype.Property.BackgroundPosition | undefined; border?: csstype.Property.Border | undefined; borderBlock?: csstype.Property.BorderBlock | undefined; borderBlockEnd?: csstype.Property.BorderBlockEnd | undefined; borderBlockStart?: csstype.Property.BorderBlockStart | undefined; borderBottom?: csstype.Property.BorderBottom | undefined; borderColor?: csstype.Property.BorderColor | undefined; borderImage?: csstype.Property.BorderImage | undefined; borderInline?: csstype.Property.BorderInline | undefined; borderInlineEnd?: csstype.Property.BorderInlineEnd | undefined; borderInlineStart?: csstype.Property.BorderInlineStart | undefined; borderLeft?: csstype.Property.BorderLeft | undefined; borderRadius?: csstype.Property.BorderRadius | undefined; borderRight?: csstype.Property.BorderRight | undefined; borderStyle?: csstype.Property.BorderStyle | undefined; borderTop?: csstype.Property.BorderTop | undefined; borderWidth?: csstype.Property.BorderWidth | undefined; caret?: csstype.Property.Caret | undefined; columnRule?: csstype.Property.ColumnRule | undefined; columns?: csstype.Property.Columns | undefined; containIntrinsicSize?: csstype.Property.ContainIntrinsicSize | undefined; container?: csstype.Property.Container | undefined; flex?: csstype.Property.Flex | undefined; flexFlow?: csstype.Property.FlexFlow | undefined; font?: csstype.Property.Font | undefined; gap?: csstype.Property.Gap | undefined; grid?: csstype.Property.Grid | undefined; gridArea?: csstype.Property.GridArea | undefined; gridColumn?: csstype.Property.GridColumn | undefined; gridRow?: csstype.Property.GridRow | undefined; gridTemplate?: csstype.Property.GridTemplate | undefined; inset?: csstype.Property.Inset | undefined; insetBlock?: csstype.Property.InsetBlock | undefined; insetInline?: csstype.Property.InsetInline | undefined; lineClamp?: csstype.Property.LineClamp | undefined; listStyle?: csstype.Property.ListStyle | undefined; margin?: csstype.Property.Margin | undefined; marginBlock?: csstype.Property.MarginBlock | undefined; marginInline?: csstype.Property.MarginInline | undefined; mask?: csstype.Property.Mask | undefined; maskBorder?: csstype.Property.MaskBorder | undefined; motion?: csstype.Property.Offset | undefined; offset?: csstype.Property.Offset | undefined; outline?: csstype.Property.Outline | undefined; overflow?: csstype.Property.Overflow | undefined; overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined; padding?: csstype.Property.Padding | undefined; paddingBlock?: csstype.Property.PaddingBlock | undefined; paddingInline?: csstype.Property.PaddingInline | undefined; placeContent?: csstype.Property.PlaceContent | undefined; placeItems?: csstype.Property.PlaceItems | undefined; placeSelf?: csstype.Property.PlaceSelf | undefined; scrollMargin?: csstype.Property.ScrollMargin | undefined; scrollMarginBlock?: csstype.Property.ScrollMarginBlock | undefined; scrollMarginInline?: csstype.Property.ScrollMarginInline | undefined; scrollPadding?: csstype.Property.ScrollPadding | undefined; scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock | undefined; scrollPaddingInline?: csstype.Property.ScrollPaddingInline | undefined; scrollSnapMargin?: csstype.Property.ScrollMargin | undefined; scrollTimeline?: csstype.Property.ScrollTimeline | undefined; textDecoration?: csstype.Property.TextDecoration | undefined; textEmphasis?: csstype.Property.TextEmphasis | undefined; viewTimeline?: csstype.Property.ViewTimeline | undefined; MozAnimationDelay?: csstype.Property.AnimationDelay | undefined; MozAnimationDirection?: csstype.Property.AnimationDirection | undefined; MozAnimationDuration?: csstype.Property.AnimationDuration | undefined; MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; MozAnimationName?: csstype.Property.AnimationName | undefined; MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; MozAppearance?: csstype.Property.MozAppearance | undefined; MozBinding?: csstype.Property.MozBinding | undefined; MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined; MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined; MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined; MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined; MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined; MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined; MozBoxSizing?: csstype.Property.BoxSizing | undefined; MozColumnCount?: csstype.Property.ColumnCount | undefined; MozColumnFill?: csstype.Property.ColumnFill | undefined; MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; MozColumnWidth?: csstype.Property.ColumnWidth | undefined; MozContextProperties?: csstype.Property.MozContextProperties | undefined; MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; MozHyphens?: csstype.Property.Hyphens | undefined; MozImageRegion?: csstype.Property.MozImageRegion | undefined; MozMarginEnd?: csstype.Property.MarginInlineEnd | undefined; MozMarginStart?: csstype.Property.MarginInlineStart | undefined; MozOrient?: csstype.Property.MozOrient | undefined; MozOsxFontSmoothing?: csstype.Property.FontSmooth | undefined; MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft | undefined; MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright | undefined; MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft | undefined; MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright | undefined; MozPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; MozPaddingStart?: csstype.Property.PaddingInlineStart | undefined; MozStackSizing?: csstype.Property.MozStackSizing | undefined; MozTabSize?: csstype.Property.TabSize | undefined; MozTextBlink?: csstype.Property.MozTextBlink | undefined; MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; MozUserFocus?: csstype.Property.MozUserFocus | undefined; MozUserModify?: csstype.Property.MozUserModify | undefined; MozUserSelect?: csstype.Property.UserSelect | undefined; MozWindowDragging?: csstype.Property.MozWindowDragging | undefined; MozWindowShadow?: csstype.Property.MozWindowShadow | undefined; msAccelerator?: csstype.Property.MsAccelerator | undefined; msBlockProgression?: csstype.Property.MsBlockProgression | undefined; msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined; msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined; msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined; msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined; msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined; msContentZooming?: csstype.Property.MsContentZooming | undefined; msFilter?: csstype.Property.MsFilter | undefined; msFlexDirection?: csstype.Property.FlexDirection | undefined; msFlexPositive?: csstype.Property.FlexGrow | undefined; msFlowFrom?: csstype.Property.MsFlowFrom | undefined; msFlowInto?: csstype.Property.MsFlowInto | undefined; msGridColumns?: csstype.Property.MsGridColumns | undefined; msGridRows?: csstype.Property.MsGridRows | undefined; msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined; msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined; msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined; msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone | undefined; msHyphens?: csstype.Property.Hyphens | undefined; msImeAlign?: csstype.Property.MsImeAlign | undefined; msLineBreak?: csstype.Property.LineBreak | undefined; msOrder?: csstype.Property.Order | undefined; msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined; msOverflowX?: csstype.Property.OverflowX | undefined; msOverflowY?: csstype.Property.OverflowY | undefined; msScrollChaining?: csstype.Property.MsScrollChaining | undefined; msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax | undefined; msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin | undefined; msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax | undefined; msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin | undefined; msScrollRails?: csstype.Property.MsScrollRails | undefined; msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined; msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined; msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined; msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined; msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined; msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined; msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined; msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined; msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined; msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined; msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined; msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined; msTextAutospace?: csstype.Property.MsTextAutospace | undefined; msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined; msTextOverflow?: csstype.Property.TextOverflow | undefined; msTouchAction?: csstype.Property.TouchAction | undefined; msTouchSelect?: csstype.Property.MsTouchSelect | undefined; msTransform?: csstype.Property.Transform | undefined; msTransformOrigin?: csstype.Property.TransformOrigin | undefined; msTransitionDelay?: csstype.Property.TransitionDelay | undefined; msTransitionDuration?: csstype.Property.TransitionDuration | undefined; msTransitionProperty?: csstype.Property.TransitionProperty | undefined; msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; msUserSelect?: csstype.Property.MsUserSelect | undefined; msWordBreak?: csstype.Property.WordBreak | undefined; msWrapFlow?: csstype.Property.MsWrapFlow | undefined; msWrapMargin?: csstype.Property.MsWrapMargin | undefined; msWrapThrough?: csstype.Property.MsWrapThrough | undefined; msWritingMode?: csstype.Property.WritingMode | undefined; WebkitAlignContent?: csstype.Property.AlignContent | undefined; WebkitAlignItems?: csstype.Property.AlignItems | undefined; WebkitAlignSelf?: csstype.Property.AlignSelf | undefined; WebkitAnimationDelay?: csstype.Property.AnimationDelay | undefined; WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined; WebkitAnimationDuration?: csstype.Property.AnimationDuration | undefined; WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; WebkitAnimationName?: csstype.Property.AnimationName | undefined; WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; WebkitAppearance?: csstype.Property.WebkitAppearance | undefined; WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined; WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined; WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; WebkitBackgroundSize?: csstype.Property.BackgroundSize | undefined; WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined; WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined; WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth | undefined; WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined; WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; WebkitBoxReflect?: csstype.Property.WebkitBoxReflect | undefined; WebkitBoxShadow?: csstype.Property.BoxShadow | undefined; WebkitBoxSizing?: csstype.Property.BoxSizing | undefined; WebkitClipPath?: csstype.Property.ClipPath | undefined; WebkitColumnCount?: csstype.Property.ColumnCount | undefined; WebkitColumnFill?: csstype.Property.ColumnFill | undefined; WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined; WebkitColumnWidth?: csstype.Property.ColumnWidth | undefined; WebkitFilter?: csstype.Property.Filter | undefined; WebkitFlexBasis?: csstype.Property.FlexBasis | undefined; WebkitFlexDirection?: csstype.Property.FlexDirection | undefined; WebkitFlexGrow?: csstype.Property.FlexGrow | undefined; WebkitFlexShrink?: csstype.Property.FlexShrink | undefined; WebkitFlexWrap?: csstype.Property.FlexWrap | undefined; WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; WebkitFontKerning?: csstype.Property.FontKerning | undefined; WebkitFontSmoothing?: csstype.Property.FontSmooth | undefined; WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; WebkitHyphens?: csstype.Property.Hyphens | undefined; WebkitInitialLetter?: csstype.Property.InitialLetter | undefined; WebkitJustifyContent?: csstype.Property.JustifyContent | undefined; WebkitLineBreak?: csstype.Property.LineBreak | undefined; WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined; WebkitMarginEnd?: csstype.Property.MarginInlineEnd | undefined; WebkitMarginStart?: csstype.Property.MarginInlineStart | undefined; WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined; WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset | undefined; WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined; WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined; WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined; WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth | undefined; WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined; WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined; WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined; WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined; WebkitMaskPosition?: csstype.Property.WebkitMaskPosition | undefined; WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX | undefined; WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY | undefined; WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined; WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined; WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined; WebkitMaskSize?: csstype.Property.WebkitMaskSize | undefined; WebkitMaxInlineSize?: csstype.Property.MaxInlineSize | undefined; WebkitOrder?: csstype.Property.Order | undefined; WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined; WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; WebkitPaddingStart?: csstype.Property.PaddingInlineStart | undefined; WebkitPerspective?: csstype.Property.Perspective | undefined; WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined; WebkitRubyPosition?: csstype.Property.RubyPosition | undefined; WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined; WebkitShapeMargin?: csstype.Property.ShapeMargin | undefined; WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined; WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined; WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined; WebkitTextOrientation?: csstype.Property.TextOrientation | undefined; WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined; WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth | undefined; WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined; WebkitTransform?: csstype.Property.Transform | undefined; WebkitTransformOrigin?: csstype.Property.TransformOrigin | undefined; WebkitTransformStyle?: csstype.Property.TransformStyle | undefined; WebkitTransitionDelay?: csstype.Property.TransitionDelay | undefined; WebkitTransitionDuration?: csstype.Property.TransitionDuration | undefined; WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined; WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitUserModify?: csstype.Property.WebkitUserModify | undefined; WebkitUserSelect?: csstype.Property.UserSelect | undefined; WebkitWritingMode?: csstype.Property.WritingMode | undefined; MozAnimation?: csstype.Property.Animation | undefined; MozBorderImage?: csstype.Property.BorderImage | undefined; MozColumnRule?: csstype.Property.ColumnRule | undefined; MozColumns?: csstype.Property.Columns | undefined; MozOutlineRadius?: csstype.Property.MozOutlineRadius | undefined; msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined; msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined; msFlex?: csstype.Property.Flex | undefined; msScrollLimit?: csstype.Property.MsScrollLimit | undefined; msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined; msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined; msTransition?: csstype.Property.Transition | undefined; WebkitAnimation?: csstype.Property.Animation | undefined; WebkitBorderBefore?: csstype.Property.WebkitBorderBefore | undefined; WebkitBorderImage?: csstype.Property.BorderImage | undefined; WebkitBorderRadius?: csstype.Property.BorderRadius | undefined; WebkitColumnRule?: csstype.Property.ColumnRule | undefined; WebkitColumns?: csstype.Property.Columns | undefined; WebkitFlex?: csstype.Property.Flex | undefined; WebkitFlexFlow?: csstype.Property.FlexFlow | undefined; WebkitMask?: csstype.Property.WebkitMask | undefined; WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined; WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined; WebkitTextStroke?: csstype.Property.WebkitTextStroke | undefined; WebkitTransition?: csstype.Property.Transition | undefined; azimuth?: csstype.Property.Azimuth | undefined; boxAlign?: csstype.Property.BoxAlign | undefined; boxDirection?: csstype.Property.BoxDirection | undefined; boxFlex?: csstype.Property.BoxFlex | undefined; boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; boxLines?: csstype.Property.BoxLines | undefined; boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; boxOrient?: csstype.Property.BoxOrient | undefined; boxPack?: csstype.Property.BoxPack | undefined; clip?: csstype.Property.Clip | undefined; gridColumnGap?: csstype.Property.GridColumnGap | undefined; gridGap?: csstype.Property.GridGap | undefined; gridRowGap?: csstype.Property.GridRowGap | undefined; imeMode?: csstype.Property.ImeMode | undefined; offsetBlock?: csstype.Property.InsetBlock | undefined; offsetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; offsetBlockStart?: csstype.Property.InsetBlockStart | undefined; offsetInline?: csstype.Property.InsetInline | undefined; offsetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; offsetInlineStart?: csstype.Property.InsetInlineStart | undefined; scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate | undefined; scrollSnapDestination?: csstype.Property.ScrollSnapDestination | undefined; scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined; scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined; scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined; scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined; KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined; KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined; KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined; KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; KhtmlBoxLines?: csstype.Property.BoxLines | undefined; KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined; KhtmlBoxPack?: csstype.Property.BoxPack | undefined; KhtmlLineBreak?: csstype.Property.LineBreak | undefined; KhtmlOpacity?: csstype.Property.Opacity | undefined; KhtmlUserSelect?: csstype.Property.UserSelect | undefined; MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; MozBackgroundClip?: csstype.Property.BackgroundClip | undefined; MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined; MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; MozBackgroundSize?: csstype.Property.BackgroundSize | undefined; MozBorderRadius?: csstype.Property.BorderRadius | undefined; MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius | undefined; MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius | undefined; MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius | undefined; MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius | undefined; MozBoxAlign?: csstype.Property.BoxAlign | undefined; MozBoxDirection?: csstype.Property.BoxDirection | undefined; MozBoxFlex?: csstype.Property.BoxFlex | undefined; MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; MozBoxOrient?: csstype.Property.BoxOrient | undefined; MozBoxPack?: csstype.Property.BoxPack | undefined; MozBoxShadow?: csstype.Property.BoxShadow | undefined; MozFloatEdge?: csstype.Property.MozFloatEdge | undefined; MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined; MozOpacity?: csstype.Property.Opacity | undefined; MozOutline?: csstype.Property.Outline | undefined; MozOutlineColor?: csstype.Property.OutlineColor | undefined; MozOutlineStyle?: csstype.Property.OutlineStyle | undefined; MozOutlineWidth?: csstype.Property.OutlineWidth | undefined; MozPerspective?: csstype.Property.Perspective | undefined; MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; MozTextAlignLast?: csstype.Property.TextAlignLast | undefined; MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; MozTransform?: csstype.Property.Transform | undefined; MozTransformOrigin?: csstype.Property.TransformOrigin | undefined; MozTransformStyle?: csstype.Property.TransformStyle | undefined; MozTransition?: csstype.Property.Transition | undefined; MozTransitionDelay?: csstype.Property.TransitionDelay | undefined; MozTransitionDuration?: csstype.Property.TransitionDuration | undefined; MozTransitionProperty?: csstype.Property.TransitionProperty | undefined; MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; MozUserInput?: csstype.Property.MozUserInput | undefined; msImeMode?: csstype.Property.ImeMode | undefined; OAnimation?: csstype.Property.Animation | undefined; OAnimationDelay?: csstype.Property.AnimationDelay | undefined; OAnimationDirection?: csstype.Property.AnimationDirection | undefined; OAnimationDuration?: csstype.Property.AnimationDuration | undefined; OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; OAnimationName?: csstype.Property.AnimationName | undefined; OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; OBackgroundSize?: csstype.Property.BackgroundSize | undefined; OBorderImage?: csstype.Property.BorderImage | undefined; OObjectFit?: csstype.Property.ObjectFit | undefined; OObjectPosition?: csstype.Property.ObjectPosition | undefined; OTabSize?: csstype.Property.TabSize | undefined; OTextOverflow?: csstype.Property.TextOverflow | undefined; OTransform?: csstype.Property.Transform | undefined; OTransformOrigin?: csstype.Property.TransformOrigin | undefined; OTransition?: csstype.Property.Transition | undefined; OTransitionDelay?: csstype.Property.TransitionDelay | undefined; OTransitionDuration?: csstype.Property.TransitionDuration | undefined; OTransitionProperty?: csstype.Property.TransitionProperty | undefined; OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitBoxAlign?: csstype.Property.BoxAlign | undefined; WebkitBoxDirection?: csstype.Property.BoxDirection | undefined; WebkitBoxFlex?: csstype.Property.BoxFlex | undefined; WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; WebkitBoxLines?: csstype.Property.BoxLines | undefined; WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; WebkitBoxOrient?: csstype.Property.BoxOrient | undefined; WebkitBoxPack?: csstype.Property.BoxPack | undefined; alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined; baselineShift?: csstype.Property.BaselineShift | undefined; clipRule?: csstype.Property.ClipRule | undefined; colorInterpolation?: csstype.Property.ColorInterpolation | undefined; colorRendering?: csstype.Property.ColorRendering | undefined; dominantBaseline?: csstype.Property.DominantBaseline | undefined; fillOpacity?: csstype.Property.FillOpacity | undefined; fillRule?: csstype.Property.FillRule | undefined; floodColor?: csstype.Property.FloodColor | undefined; floodOpacity?: csstype.Property.FloodOpacity | undefined; glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined; lightingColor?: csstype.Property.LightingColor | undefined; marker?: csstype.Property.Marker | undefined; markerEnd?: csstype.Property.MarkerEnd | undefined; markerMid?: csstype.Property.MarkerMid | undefined; markerStart?: csstype.Property.MarkerStart | undefined; shapeRendering?: csstype.Property.ShapeRendering | undefined; stopColor?: csstype.Property.StopColor | undefined; stopOpacity?: csstype.Property.StopOpacity | undefined; stroke?: csstype.Property.Stroke | undefined; strokeDasharray?: csstype.Property.StrokeDasharray | undefined; strokeDashoffset?: csstype.Property.StrokeDashoffset | undefined; strokeLinecap?: csstype.Property.StrokeLinecap | undefined; strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined; strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined; strokeOpacity?: csstype.Property.StrokeOpacity | undefined; strokeWidth?: csstype.Property.StrokeWidth | undefined; textAnchor?: csstype.Property.TextAnchor | undefined; vectorEffect?: csstype.Property.VectorEffect | undefined; "accent-color"?: csstype.Property.AccentColor | undefined; "align-content"?: csstype.Property.AlignContent | undefined; "align-items"?: csstype.Property.AlignItems | undefined; "align-self"?: csstype.Property.AlignSelf | undefined; "align-tracks"?: csstype.Property.AlignTracks | undefined; "animation-composition"?: csstype.Property.AnimationComposition | undefined; "animation-delay"?: csstype.Property.AnimationDelay | undefined; "animation-direction"?: csstype.Property.AnimationDirection | undefined; "animation-duration"?: csstype.Property.AnimationDuration | undefined; "animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "animation-name"?: csstype.Property.AnimationName | undefined; "animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "animation-range-end"?: csstype.Property.AnimationRangeEnd | undefined; "animation-range-start"?: csstype.Property.AnimationRangeStart | undefined; "animation-timeline"?: csstype.Property.AnimationTimeline | undefined; "animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "aspect-ratio"?: csstype.Property.AspectRatio | undefined; "backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "background-attachment"?: csstype.Property.BackgroundAttachment | undefined; "background-blend-mode"?: csstype.Property.BackgroundBlendMode | undefined; "background-clip"?: csstype.Property.BackgroundClip | undefined; "background-color"?: csstype.Property.BackgroundColor | undefined; "background-image"?: csstype.Property.BackgroundImage | undefined; "background-origin"?: csstype.Property.BackgroundOrigin | undefined; "background-position-x"?: csstype.Property.BackgroundPositionX | undefined; "background-position-y"?: csstype.Property.BackgroundPositionY | undefined; "background-repeat"?: csstype.Property.BackgroundRepeat | undefined; "background-size"?: csstype.Property.BackgroundSize | undefined; "block-overflow"?: csstype.Property.BlockOverflow | undefined; "block-size"?: csstype.Property.BlockSize | undefined; "border-block-color"?: csstype.Property.BorderBlockColor | undefined; "border-block-end-color"?: csstype.Property.BorderBlockEndColor | undefined; "border-block-end-style"?: csstype.Property.BorderBlockEndStyle | undefined; "border-block-end-width"?: csstype.Property.BorderBlockEndWidth | undefined; "border-block-start-color"?: csstype.Property.BorderBlockStartColor | undefined; "border-block-start-style"?: csstype.Property.BorderBlockStartStyle | undefined; "border-block-start-width"?: csstype.Property.BorderBlockStartWidth | undefined; "border-block-style"?: csstype.Property.BorderBlockStyle | undefined; "border-block-width"?: csstype.Property.BorderBlockWidth | undefined; "border-bottom-color"?: csstype.Property.BorderBottomColor | undefined; "border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "border-bottom-style"?: csstype.Property.BorderBottomStyle | undefined; "border-bottom-width"?: csstype.Property.BorderBottomWidth | undefined; "border-collapse"?: csstype.Property.BorderCollapse | undefined; "border-end-end-radius"?: csstype.Property.BorderEndEndRadius | undefined; "border-end-start-radius"?: csstype.Property.BorderEndStartRadius | undefined; "border-image-outset"?: csstype.Property.BorderImageOutset | undefined; "border-image-repeat"?: csstype.Property.BorderImageRepeat | undefined; "border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "border-image-source"?: csstype.Property.BorderImageSource | undefined; "border-image-width"?: csstype.Property.BorderImageWidth | undefined; "border-inline-color"?: csstype.Property.BorderInlineColor | undefined; "border-inline-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "border-inline-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "border-inline-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "border-inline-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "border-inline-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "border-inline-start-width"?: csstype.Property.BorderInlineStartWidth | undefined; "border-inline-style"?: csstype.Property.BorderInlineStyle | undefined; "border-inline-width"?: csstype.Property.BorderInlineWidth | undefined; "border-left-color"?: csstype.Property.BorderLeftColor | undefined; "border-left-style"?: csstype.Property.BorderLeftStyle | undefined; "border-left-width"?: csstype.Property.BorderLeftWidth | undefined; "border-right-color"?: csstype.Property.BorderRightColor | undefined; "border-right-style"?: csstype.Property.BorderRightStyle | undefined; "border-right-width"?: csstype.Property.BorderRightWidth | undefined; "border-spacing"?: csstype.Property.BorderSpacing | undefined; "border-start-end-radius"?: csstype.Property.BorderStartEndRadius | undefined; "border-start-start-radius"?: csstype.Property.BorderStartStartRadius | undefined; "border-top-color"?: csstype.Property.BorderTopColor | undefined; "border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "border-top-style"?: csstype.Property.BorderTopStyle | undefined; "border-top-width"?: csstype.Property.BorderTopWidth | undefined; "box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "box-shadow"?: csstype.Property.BoxShadow | undefined; "box-sizing"?: csstype.Property.BoxSizing | undefined; "break-after"?: csstype.Property.BreakAfter | undefined; "break-before"?: csstype.Property.BreakBefore | undefined; "break-inside"?: csstype.Property.BreakInside | undefined; "caption-side"?: csstype.Property.CaptionSide | undefined; "caret-color"?: csstype.Property.CaretColor | undefined; "caret-shape"?: csstype.Property.CaretShape | undefined; "clip-path"?: csstype.Property.ClipPath | undefined; "color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "color-scheme"?: csstype.Property.ColorScheme | undefined; "column-count"?: csstype.Property.ColumnCount | undefined; "column-fill"?: csstype.Property.ColumnFill | undefined; "column-gap"?: csstype.Property.ColumnGap | undefined; "column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "column-span"?: csstype.Property.ColumnSpan | undefined; "column-width"?: csstype.Property.ColumnWidth | undefined; "contain-intrinsic-block-size"?: csstype.Property.ContainIntrinsicBlockSize | undefined; "contain-intrinsic-height"?: csstype.Property.ContainIntrinsicHeight | undefined; "contain-intrinsic-inline-size"?: csstype.Property.ContainIntrinsicInlineSize | undefined; "contain-intrinsic-width"?: csstype.Property.ContainIntrinsicWidth | undefined; "container-name"?: csstype.Property.ContainerName | undefined; "container-type"?: csstype.Property.ContainerType | undefined; "content-visibility"?: csstype.Property.ContentVisibility | undefined; "counter-increment"?: csstype.Property.CounterIncrement | undefined; "counter-reset"?: csstype.Property.CounterReset | undefined; "counter-set"?: csstype.Property.CounterSet | undefined; "empty-cells"?: csstype.Property.EmptyCells | undefined; "flex-basis"?: csstype.Property.FlexBasis | undefined; "flex-direction"?: csstype.Property.FlexDirection | undefined; "flex-grow"?: csstype.Property.FlexGrow | undefined; "flex-shrink"?: csstype.Property.FlexShrink | undefined; "flex-wrap"?: csstype.Property.FlexWrap | undefined; "font-family"?: csstype.Property.FontFamily | undefined; "font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "font-kerning"?: csstype.Property.FontKerning | undefined; "font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "font-optical-sizing"?: csstype.Property.FontOpticalSizing | undefined; "font-palette"?: csstype.Property.FontPalette | undefined; "font-size"?: csstype.Property.FontSize | undefined; "font-size-adjust"?: csstype.Property.FontSizeAdjust | undefined; "font-smooth"?: csstype.Property.FontSmooth | undefined; "font-stretch"?: csstype.Property.FontStretch | undefined; "font-style"?: csstype.Property.FontStyle | undefined; "font-synthesis"?: csstype.Property.FontSynthesis | undefined; "font-synthesis-position"?: csstype.Property.FontSynthesisPosition | undefined; "font-synthesis-small-caps"?: csstype.Property.FontSynthesisSmallCaps | undefined; "font-synthesis-style"?: csstype.Property.FontSynthesisStyle | undefined; "font-synthesis-weight"?: csstype.Property.FontSynthesisWeight | undefined; "font-variant"?: csstype.Property.FontVariant | undefined; "font-variant-alternates"?: csstype.Property.FontVariantAlternates | undefined; "font-variant-caps"?: csstype.Property.FontVariantCaps | undefined; "font-variant-east-asian"?: csstype.Property.FontVariantEastAsian | undefined; "font-variant-emoji"?: csstype.Property.FontVariantEmoji | undefined; "font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "font-variant-numeric"?: csstype.Property.FontVariantNumeric | undefined; "font-variant-position"?: csstype.Property.FontVariantPosition | undefined; "font-variation-settings"?: csstype.Property.FontVariationSettings | undefined; "font-weight"?: csstype.Property.FontWeight | undefined; "forced-color-adjust"?: csstype.Property.ForcedColorAdjust | undefined; "grid-auto-columns"?: csstype.Property.GridAutoColumns | undefined; "grid-auto-flow"?: csstype.Property.GridAutoFlow | undefined; "grid-auto-rows"?: csstype.Property.GridAutoRows | undefined; "grid-column-end"?: csstype.Property.GridColumnEnd | undefined; "grid-column-start"?: csstype.Property.GridColumnStart | undefined; "grid-row-end"?: csstype.Property.GridRowEnd | undefined; "grid-row-start"?: csstype.Property.GridRowStart | undefined; "grid-template-areas"?: csstype.Property.GridTemplateAreas | undefined; "grid-template-columns"?: csstype.Property.GridTemplateColumns | undefined; "grid-template-rows"?: csstype.Property.GridTemplateRows | undefined; "hanging-punctuation"?: csstype.Property.HangingPunctuation | undefined; "hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "hyphenate-limit-chars"?: csstype.Property.HyphenateLimitChars | undefined; "image-orientation"?: csstype.Property.ImageOrientation | undefined; "image-rendering"?: csstype.Property.ImageRendering | undefined; "image-resolution"?: csstype.Property.ImageResolution | undefined; "initial-letter"?: csstype.Property.InitialLetter | undefined; "inline-size"?: csstype.Property.InlineSize | undefined; "input-security"?: csstype.Property.InputSecurity | undefined; "inset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "inset-block-start"?: csstype.Property.InsetBlockStart | undefined; "inset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "inset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "justify-content"?: csstype.Property.JustifyContent | undefined; "justify-items"?: csstype.Property.JustifyItems | undefined; "justify-self"?: csstype.Property.JustifySelf | undefined; "justify-tracks"?: csstype.Property.JustifyTracks | undefined; "letter-spacing"?: csstype.Property.LetterSpacing | undefined; "line-break"?: csstype.Property.LineBreak | undefined; "line-height"?: csstype.Property.LineHeight | undefined; "line-height-step"?: csstype.Property.LineHeightStep | undefined; "list-style-image"?: csstype.Property.ListStyleImage | undefined; "list-style-position"?: csstype.Property.ListStylePosition | undefined; "list-style-type"?: csstype.Property.ListStyleType | undefined; "margin-block-end"?: csstype.Property.MarginBlockEnd | undefined; "margin-block-start"?: csstype.Property.MarginBlockStart | undefined; "margin-bottom"?: csstype.Property.MarginBottom | undefined; "margin-inline-end"?: csstype.Property.MarginInlineEnd | undefined; "margin-inline-start"?: csstype.Property.MarginInlineStart | undefined; "margin-left"?: csstype.Property.MarginLeft | undefined; "margin-right"?: csstype.Property.MarginRight | undefined; "margin-top"?: csstype.Property.MarginTop | undefined; "margin-trim"?: csstype.Property.MarginTrim | undefined; "mask-border-mode"?: csstype.Property.MaskBorderMode | undefined; "mask-border-outset"?: csstype.Property.MaskBorderOutset | undefined; "mask-border-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "mask-border-slice"?: csstype.Property.MaskBorderSlice | undefined; "mask-border-source"?: csstype.Property.MaskBorderSource | undefined; "mask-border-width"?: csstype.Property.MaskBorderWidth | undefined; "mask-clip"?: csstype.Property.MaskClip | undefined; "mask-composite"?: csstype.Property.MaskComposite | undefined; "mask-image"?: csstype.Property.MaskImage | undefined; "mask-mode"?: csstype.Property.MaskMode | undefined; "mask-origin"?: csstype.Property.MaskOrigin | undefined; "mask-position"?: csstype.Property.MaskPosition | undefined; "mask-repeat"?: csstype.Property.MaskRepeat | undefined; "mask-size"?: csstype.Property.MaskSize | undefined; "mask-type"?: csstype.Property.MaskType | undefined; "masonry-auto-flow"?: csstype.Property.MasonryAutoFlow | undefined; "math-depth"?: csstype.Property.MathDepth | undefined; "math-shift"?: csstype.Property.MathShift | undefined; "math-style"?: csstype.Property.MathStyle | undefined; "max-block-size"?: csstype.Property.MaxBlockSize | undefined; "max-height"?: csstype.Property.MaxHeight | undefined; "max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "max-lines"?: csstype.Property.MaxLines | undefined; "max-width"?: csstype.Property.MaxWidth | undefined; "min-block-size"?: csstype.Property.MinBlockSize | undefined; "min-height"?: csstype.Property.MinHeight | undefined; "min-inline-size"?: csstype.Property.MinInlineSize | undefined; "min-width"?: csstype.Property.MinWidth | undefined; "mix-blend-mode"?: csstype.Property.MixBlendMode | undefined; "motion-distance"?: csstype.Property.OffsetDistance | undefined; "motion-path"?: csstype.Property.OffsetPath | undefined; "motion-rotation"?: csstype.Property.OffsetRotate | undefined; "object-fit"?: csstype.Property.ObjectFit | undefined; "object-position"?: csstype.Property.ObjectPosition | undefined; "offset-anchor"?: csstype.Property.OffsetAnchor | undefined; "offset-distance"?: csstype.Property.OffsetDistance | undefined; "offset-path"?: csstype.Property.OffsetPath | undefined; "offset-position"?: csstype.Property.OffsetPosition | undefined; "offset-rotate"?: csstype.Property.OffsetRotate | undefined; "offset-rotation"?: csstype.Property.OffsetRotate | undefined; "outline-color"?: csstype.Property.OutlineColor | undefined; "outline-offset"?: csstype.Property.OutlineOffset | undefined; "outline-style"?: csstype.Property.OutlineStyle | undefined; "outline-width"?: csstype.Property.OutlineWidth | undefined; "overflow-anchor"?: csstype.Property.OverflowAnchor | undefined; "overflow-block"?: csstype.Property.OverflowBlock | undefined; "overflow-clip-box"?: csstype.Property.OverflowClipBox | undefined; "overflow-clip-margin"?: csstype.Property.OverflowClipMargin | undefined; "overflow-inline"?: csstype.Property.OverflowInline | undefined; "overflow-wrap"?: csstype.Property.OverflowWrap | undefined; "overflow-x"?: csstype.Property.OverflowX | undefined; "overflow-y"?: csstype.Property.OverflowY | undefined; "overscroll-behavior-block"?: csstype.Property.OverscrollBehaviorBlock | undefined; "overscroll-behavior-inline"?: csstype.Property.OverscrollBehaviorInline | undefined; "overscroll-behavior-x"?: csstype.Property.OverscrollBehaviorX | undefined; "overscroll-behavior-y"?: csstype.Property.OverscrollBehaviorY | undefined; "padding-block-end"?: csstype.Property.PaddingBlockEnd | undefined; "padding-block-start"?: csstype.Property.PaddingBlockStart | undefined; "padding-bottom"?: csstype.Property.PaddingBottom | undefined; "padding-inline-end"?: csstype.Property.PaddingInlineEnd | undefined; "padding-inline-start"?: csstype.Property.PaddingInlineStart | undefined; "padding-left"?: csstype.Property.PaddingLeft | undefined; "padding-right"?: csstype.Property.PaddingRight | undefined; "padding-top"?: csstype.Property.PaddingTop | undefined; "page-break-after"?: csstype.Property.PageBreakAfter | undefined; "page-break-before"?: csstype.Property.PageBreakBefore | undefined; "page-break-inside"?: csstype.Property.PageBreakInside | undefined; "paint-order"?: csstype.Property.PaintOrder | undefined; "perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "pointer-events"?: csstype.Property.PointerEvents | undefined; "print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "row-gap"?: csstype.Property.RowGap | undefined; "ruby-align"?: csstype.Property.RubyAlign | undefined; "ruby-merge"?: csstype.Property.RubyMerge | undefined; "ruby-position"?: csstype.Property.RubyPosition | undefined; "scroll-behavior"?: csstype.Property.ScrollBehavior | undefined; "scroll-margin-block-end"?: csstype.Property.ScrollMarginBlockEnd | undefined; "scroll-margin-block-start"?: csstype.Property.ScrollMarginBlockStart | undefined; "scroll-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-margin-inline-end"?: csstype.Property.ScrollMarginInlineEnd | undefined; "scroll-margin-inline-start"?: csstype.Property.ScrollMarginInlineStart | undefined; "scroll-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-padding-block-end"?: csstype.Property.ScrollPaddingBlockEnd | undefined; "scroll-padding-block-start"?: csstype.Property.ScrollPaddingBlockStart | undefined; "scroll-padding-bottom"?: csstype.Property.ScrollPaddingBottom | undefined; "scroll-padding-inline-end"?: csstype.Property.ScrollPaddingInlineEnd | undefined; "scroll-padding-inline-start"?: csstype.Property.ScrollPaddingInlineStart | undefined; "scroll-padding-left"?: csstype.Property.ScrollPaddingLeft | undefined; "scroll-padding-right"?: csstype.Property.ScrollPaddingRight | undefined; "scroll-padding-top"?: csstype.Property.ScrollPaddingTop | undefined; "scroll-snap-align"?: csstype.Property.ScrollSnapAlign | undefined; "scroll-snap-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-snap-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-snap-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-snap-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-snap-stop"?: csstype.Property.ScrollSnapStop | undefined; "scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "scroll-timeline-axis"?: csstype.Property.ScrollTimelineAxis | undefined; "scroll-timeline-name"?: csstype.Property.ScrollTimelineName | undefined; "scrollbar-color"?: csstype.Property.ScrollbarColor | undefined; "scrollbar-gutter"?: csstype.Property.ScrollbarGutter | undefined; "scrollbar-width"?: csstype.Property.ScrollbarWidth | undefined; "shape-image-threshold"?: csstype.Property.ShapeImageThreshold | undefined; "shape-margin"?: csstype.Property.ShapeMargin | undefined; "shape-outside"?: csstype.Property.ShapeOutside | undefined; "tab-size"?: csstype.Property.TabSize | undefined; "table-layout"?: csstype.Property.TableLayout | undefined; "text-align"?: csstype.Property.TextAlign | undefined; "text-align-last"?: csstype.Property.TextAlignLast | undefined; "text-combine-upright"?: csstype.Property.TextCombineUpright | undefined; "text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "text-decoration-skip-ink"?: csstype.Property.TextDecorationSkipInk | undefined; "text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "text-decoration-thickness"?: csstype.Property.TextDecorationThickness | undefined; "text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "text-indent"?: csstype.Property.TextIndent | undefined; "text-justify"?: csstype.Property.TextJustify | undefined; "text-orientation"?: csstype.Property.TextOrientation | undefined; "text-overflow"?: csstype.Property.TextOverflow | undefined; "text-rendering"?: csstype.Property.TextRendering | undefined; "text-shadow"?: csstype.Property.TextShadow | undefined; "text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "text-transform"?: csstype.Property.TextTransform | undefined; "text-underline-offset"?: csstype.Property.TextUnderlineOffset | undefined; "text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "text-wrap"?: csstype.Property.TextWrap | undefined; "timeline-scope"?: csstype.Property.TimelineScope | undefined; "touch-action"?: csstype.Property.TouchAction | undefined; "transform-box"?: csstype.Property.TransformBox | undefined; "transform-origin"?: csstype.Property.TransformOrigin | undefined; "transform-style"?: csstype.Property.TransformStyle | undefined; "transition-behavior"?: csstype.Property.TransitionBehavior | undefined; "transition-delay"?: csstype.Property.TransitionDelay | undefined; "transition-duration"?: csstype.Property.TransitionDuration | undefined; "transition-property"?: csstype.Property.TransitionProperty | undefined; "transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "unicode-bidi"?: csstype.Property.UnicodeBidi | undefined; "user-select"?: csstype.Property.UserSelect | undefined; "vertical-align"?: csstype.Property.VerticalAlign | undefined; "view-timeline-axis"?: csstype.Property.ViewTimelineAxis | undefined; "view-timeline-inset"?: csstype.Property.ViewTimelineInset | undefined; "view-timeline-name"?: csstype.Property.ViewTimelineName | undefined; "view-transition-name"?: csstype.Property.ViewTransitionName | undefined; "white-space"?: csstype.Property.WhiteSpace | undefined; "white-space-collapse"?: csstype.Property.WhiteSpaceCollapse | undefined; "white-space-trim"?: csstype.Property.WhiteSpaceTrim | undefined; "will-change"?: csstype.Property.WillChange | undefined; "word-break"?: csstype.Property.WordBreak | undefined; "word-spacing"?: csstype.Property.WordSpacing | undefined; "word-wrap"?: csstype.Property.WordWrap | undefined; "writing-mode"?: csstype.Property.WritingMode | undefined; "z-index"?: csstype.Property.ZIndex | undefined; "animation-range"?: csstype.Property.AnimationRange | undefined; "background-position"?: csstype.Property.BackgroundPosition | undefined; "border-block"?: csstype.Property.BorderBlock | undefined; "border-block-end"?: csstype.Property.BorderBlockEnd | undefined; "border-block-start"?: csstype.Property.BorderBlockStart | undefined; "border-bottom"?: csstype.Property.BorderBottom | undefined; "border-color"?: csstype.Property.BorderColor | undefined; "border-image"?: csstype.Property.BorderImage | undefined; "border-inline"?: csstype.Property.BorderInline | undefined; "border-inline-end"?: csstype.Property.BorderInlineEnd | undefined; "border-inline-start"?: csstype.Property.BorderInlineStart | undefined; "border-left"?: csstype.Property.BorderLeft | undefined; "border-radius"?: csstype.Property.BorderRadius | undefined; "border-right"?: csstype.Property.BorderRight | undefined; "border-style"?: csstype.Property.BorderStyle | undefined; "border-top"?: csstype.Property.BorderTop | undefined; "border-width"?: csstype.Property.BorderWidth | undefined; "column-rule"?: csstype.Property.ColumnRule | undefined; "contain-intrinsic-size"?: csstype.Property.ContainIntrinsicSize | undefined; "flex-flow"?: csstype.Property.FlexFlow | undefined; "grid-area"?: csstype.Property.GridArea | undefined; "grid-column"?: csstype.Property.GridColumn | undefined; "grid-row"?: csstype.Property.GridRow | undefined; "grid-template"?: csstype.Property.GridTemplate | undefined; "inset-block"?: csstype.Property.InsetBlock | undefined; "inset-inline"?: csstype.Property.InsetInline | undefined; "line-clamp"?: csstype.Property.LineClamp | undefined; "list-style"?: csstype.Property.ListStyle | undefined; "margin-block"?: csstype.Property.MarginBlock | undefined; "margin-inline"?: csstype.Property.MarginInline | undefined; "mask-border"?: csstype.Property.MaskBorder | undefined; "overscroll-behavior"?: csstype.Property.OverscrollBehavior | undefined; "padding-block"?: csstype.Property.PaddingBlock | undefined; "padding-inline"?: csstype.Property.PaddingInline | undefined; "place-content"?: csstype.Property.PlaceContent | undefined; "place-items"?: csstype.Property.PlaceItems | undefined; "place-self"?: csstype.Property.PlaceSelf | undefined; "scroll-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-margin-block"?: csstype.Property.ScrollMarginBlock | undefined; "scroll-margin-inline"?: csstype.Property.ScrollMarginInline | undefined; "scroll-padding"?: csstype.Property.ScrollPadding | undefined; "scroll-padding-block"?: csstype.Property.ScrollPaddingBlock | undefined; "scroll-padding-inline"?: csstype.Property.ScrollPaddingInline | undefined; "scroll-snap-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-timeline"?: csstype.Property.ScrollTimeline | undefined; "text-decoration"?: csstype.Property.TextDecoration | undefined; "text-emphasis"?: csstype.Property.TextEmphasis | undefined; "view-timeline"?: csstype.Property.ViewTimeline | undefined; "-moz-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-moz-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-moz-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-moz-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-moz-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-moz-animation-name"?: csstype.Property.AnimationName | undefined; "-moz-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-moz-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-moz-appearance"?: csstype.Property.MozAppearance | undefined; "-moz-binding"?: csstype.Property.MozBinding | undefined; "-moz-border-bottom-colors"?: csstype.Property.MozBorderBottomColors | undefined; "-moz-border-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "-moz-border-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "-moz-border-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "-moz-border-left-colors"?: csstype.Property.MozBorderLeftColors | undefined; "-moz-border-right-colors"?: csstype.Property.MozBorderRightColors | undefined; "-moz-border-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "-moz-border-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "-moz-border-top-colors"?: csstype.Property.MozBorderTopColors | undefined; "-moz-box-sizing"?: csstype.Property.BoxSizing | undefined; "-moz-column-count"?: csstype.Property.ColumnCount | undefined; "-moz-column-fill"?: csstype.Property.ColumnFill | undefined; "-moz-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-moz-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-moz-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-moz-column-width"?: csstype.Property.ColumnWidth | undefined; "-moz-context-properties"?: csstype.Property.MozContextProperties | undefined; "-moz-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-moz-font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "-moz-hyphens"?: csstype.Property.Hyphens | undefined; "-moz-image-region"?: csstype.Property.MozImageRegion | undefined; "-moz-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-moz-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-moz-orient"?: csstype.Property.MozOrient | undefined; "-moz-osx-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-moz-outline-radius-bottomleft"?: csstype.Property.MozOutlineRadiusBottomleft | undefined; "-moz-outline-radius-bottomright"?: csstype.Property.MozOutlineRadiusBottomright | undefined; "-moz-outline-radius-topleft"?: csstype.Property.MozOutlineRadiusTopleft | undefined; "-moz-outline-radius-topright"?: csstype.Property.MozOutlineRadiusTopright | undefined; "-moz-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-moz-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-moz-stack-sizing"?: csstype.Property.MozStackSizing | undefined; "-moz-tab-size"?: csstype.Property.TabSize | undefined; "-moz-text-blink"?: csstype.Property.MozTextBlink | undefined; "-moz-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-moz-user-focus"?: csstype.Property.MozUserFocus | undefined; "-moz-user-modify"?: csstype.Property.MozUserModify | undefined; "-moz-user-select"?: csstype.Property.UserSelect | undefined; "-moz-window-dragging"?: csstype.Property.MozWindowDragging | undefined; "-moz-window-shadow"?: csstype.Property.MozWindowShadow | undefined; "-ms-accelerator"?: csstype.Property.MsAccelerator | undefined; "-ms-block-progression"?: csstype.Property.MsBlockProgression | undefined; "-ms-content-zoom-chaining"?: csstype.Property.MsContentZoomChaining | undefined; "-ms-content-zoom-limit-max"?: csstype.Property.MsContentZoomLimitMax | undefined; "-ms-content-zoom-limit-min"?: csstype.Property.MsContentZoomLimitMin | undefined; "-ms-content-zoom-snap-points"?: csstype.Property.MsContentZoomSnapPoints | undefined; "-ms-content-zoom-snap-type"?: csstype.Property.MsContentZoomSnapType | undefined; "-ms-content-zooming"?: csstype.Property.MsContentZooming | undefined; "-ms-filter"?: csstype.Property.MsFilter | undefined; "-ms-flex-direction"?: csstype.Property.FlexDirection | undefined; "-ms-flex-positive"?: csstype.Property.FlexGrow | undefined; "-ms-flow-from"?: csstype.Property.MsFlowFrom | undefined; "-ms-flow-into"?: csstype.Property.MsFlowInto | undefined; "-ms-grid-columns"?: csstype.Property.MsGridColumns | undefined; "-ms-grid-rows"?: csstype.Property.MsGridRows | undefined; "-ms-high-contrast-adjust"?: csstype.Property.MsHighContrastAdjust | undefined; "-ms-hyphenate-limit-chars"?: csstype.Property.MsHyphenateLimitChars | undefined; "-ms-hyphenate-limit-lines"?: csstype.Property.MsHyphenateLimitLines | undefined; "-ms-hyphenate-limit-zone"?: csstype.Property.MsHyphenateLimitZone | undefined; "-ms-hyphens"?: csstype.Property.Hyphens | undefined; "-ms-ime-align"?: csstype.Property.MsImeAlign | undefined; "-ms-line-break"?: csstype.Property.LineBreak | undefined; "-ms-order"?: csstype.Property.Order | undefined; "-ms-overflow-style"?: csstype.Property.MsOverflowStyle | undefined; "-ms-overflow-x"?: csstype.Property.OverflowX | undefined; "-ms-overflow-y"?: csstype.Property.OverflowY | undefined; "-ms-scroll-chaining"?: csstype.Property.MsScrollChaining | undefined; "-ms-scroll-limit-x-max"?: csstype.Property.MsScrollLimitXMax | undefined; "-ms-scroll-limit-x-min"?: csstype.Property.MsScrollLimitXMin | undefined; "-ms-scroll-limit-y-max"?: csstype.Property.MsScrollLimitYMax | undefined; "-ms-scroll-limit-y-min"?: csstype.Property.MsScrollLimitYMin | undefined; "-ms-scroll-rails"?: csstype.Property.MsScrollRails | undefined; "-ms-scroll-snap-points-x"?: csstype.Property.MsScrollSnapPointsX | undefined; "-ms-scroll-snap-points-y"?: csstype.Property.MsScrollSnapPointsY | undefined; "-ms-scroll-snap-type"?: csstype.Property.MsScrollSnapType | undefined; "-ms-scroll-translation"?: csstype.Property.MsScrollTranslation | undefined; "-ms-scrollbar-3dlight-color"?: csstype.Property.MsScrollbar3dlightColor | undefined; "-ms-scrollbar-arrow-color"?: csstype.Property.MsScrollbarArrowColor | undefined; "-ms-scrollbar-base-color"?: csstype.Property.MsScrollbarBaseColor | undefined; "-ms-scrollbar-darkshadow-color"?: csstype.Property.MsScrollbarDarkshadowColor | undefined; "-ms-scrollbar-face-color"?: csstype.Property.MsScrollbarFaceColor | undefined; "-ms-scrollbar-highlight-color"?: csstype.Property.MsScrollbarHighlightColor | undefined; "-ms-scrollbar-shadow-color"?: csstype.Property.MsScrollbarShadowColor | undefined; "-ms-scrollbar-track-color"?: csstype.Property.MsScrollbarTrackColor | undefined; "-ms-text-autospace"?: csstype.Property.MsTextAutospace | undefined; "-ms-text-combine-horizontal"?: csstype.Property.TextCombineUpright | undefined; "-ms-text-overflow"?: csstype.Property.TextOverflow | undefined; "-ms-touch-action"?: csstype.Property.TouchAction | undefined; "-ms-touch-select"?: csstype.Property.MsTouchSelect | undefined; "-ms-transform"?: csstype.Property.Transform | undefined; "-ms-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-ms-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-ms-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-ms-transition-property"?: csstype.Property.TransitionProperty | undefined; "-ms-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-ms-user-select"?: csstype.Property.MsUserSelect | undefined; "-ms-word-break"?: csstype.Property.WordBreak | undefined; "-ms-wrap-flow"?: csstype.Property.MsWrapFlow | undefined; "-ms-wrap-margin"?: csstype.Property.MsWrapMargin | undefined; "-ms-wrap-through"?: csstype.Property.MsWrapThrough | undefined; "-ms-writing-mode"?: csstype.Property.WritingMode | undefined; "-webkit-align-content"?: csstype.Property.AlignContent | undefined; "-webkit-align-items"?: csstype.Property.AlignItems | undefined; "-webkit-align-self"?: csstype.Property.AlignSelf | undefined; "-webkit-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-webkit-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-webkit-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-webkit-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-webkit-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-webkit-animation-name"?: csstype.Property.AnimationName | undefined; "-webkit-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-webkit-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-webkit-appearance"?: csstype.Property.WebkitAppearance | undefined; "-webkit-backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "-webkit-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-webkit-background-clip"?: csstype.Property.BackgroundClip | undefined; "-webkit-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-webkit-background-size"?: csstype.Property.BackgroundSize | undefined; "-webkit-border-before-color"?: csstype.Property.WebkitBorderBeforeColor | undefined; "-webkit-border-before-style"?: csstype.Property.WebkitBorderBeforeStyle | undefined; "-webkit-border-before-width"?: csstype.Property.WebkitBorderBeforeWidth | undefined; "-webkit-border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "-webkit-border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "-webkit-border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "-webkit-border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "-webkit-border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "-webkit-box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "-webkit-box-reflect"?: csstype.Property.WebkitBoxReflect | undefined; "-webkit-box-shadow"?: csstype.Property.BoxShadow | undefined; "-webkit-box-sizing"?: csstype.Property.BoxSizing | undefined; "-webkit-clip-path"?: csstype.Property.ClipPath | undefined; "-webkit-column-count"?: csstype.Property.ColumnCount | undefined; "-webkit-column-fill"?: csstype.Property.ColumnFill | undefined; "-webkit-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-webkit-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-webkit-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-webkit-column-span"?: csstype.Property.ColumnSpan | undefined; "-webkit-column-width"?: csstype.Property.ColumnWidth | undefined; "-webkit-filter"?: csstype.Property.Filter | undefined; "-webkit-flex-basis"?: csstype.Property.FlexBasis | undefined; "-webkit-flex-direction"?: csstype.Property.FlexDirection | undefined; "-webkit-flex-grow"?: csstype.Property.FlexGrow | undefined; "-webkit-flex-shrink"?: csstype.Property.FlexShrink | undefined; "-webkit-flex-wrap"?: csstype.Property.FlexWrap | undefined; "-webkit-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-webkit-font-kerning"?: csstype.Property.FontKerning | undefined; "-webkit-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-webkit-font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "-webkit-hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "-webkit-hyphens"?: csstype.Property.Hyphens | undefined; "-webkit-initial-letter"?: csstype.Property.InitialLetter | undefined; "-webkit-justify-content"?: csstype.Property.JustifyContent | undefined; "-webkit-line-break"?: csstype.Property.LineBreak | undefined; "-webkit-line-clamp"?: csstype.Property.WebkitLineClamp | undefined; "-webkit-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-webkit-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-webkit-mask-attachment"?: csstype.Property.WebkitMaskAttachment | undefined; "-webkit-mask-box-image-outset"?: csstype.Property.MaskBorderOutset | undefined; "-webkit-mask-box-image-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "-webkit-mask-box-image-slice"?: csstype.Property.MaskBorderSlice | undefined; "-webkit-mask-box-image-source"?: csstype.Property.MaskBorderSource | undefined; "-webkit-mask-box-image-width"?: csstype.Property.MaskBorderWidth | undefined; "-webkit-mask-clip"?: csstype.Property.WebkitMaskClip | undefined; "-webkit-mask-composite"?: csstype.Property.WebkitMaskComposite | undefined; "-webkit-mask-image"?: csstype.Property.WebkitMaskImage | undefined; "-webkit-mask-origin"?: csstype.Property.WebkitMaskOrigin | undefined; "-webkit-mask-position"?: csstype.Property.WebkitMaskPosition | undefined; "-webkit-mask-position-x"?: csstype.Property.WebkitMaskPositionX | undefined; "-webkit-mask-position-y"?: csstype.Property.WebkitMaskPositionY | undefined; "-webkit-mask-repeat"?: csstype.Property.WebkitMaskRepeat | undefined; "-webkit-mask-repeat-x"?: csstype.Property.WebkitMaskRepeatX | undefined; "-webkit-mask-repeat-y"?: csstype.Property.WebkitMaskRepeatY | undefined; "-webkit-mask-size"?: csstype.Property.WebkitMaskSize | undefined; "-webkit-max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "-webkit-order"?: csstype.Property.Order | undefined; "-webkit-overflow-scrolling"?: csstype.Property.WebkitOverflowScrolling | undefined; "-webkit-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-webkit-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-webkit-perspective"?: csstype.Property.Perspective | undefined; "-webkit-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-webkit-print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "-webkit-ruby-position"?: csstype.Property.RubyPosition | undefined; "-webkit-scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "-webkit-shape-margin"?: csstype.Property.ShapeMargin | undefined; "-webkit-tap-highlight-color"?: csstype.Property.WebkitTapHighlightColor | undefined; "-webkit-text-combine"?: csstype.Property.TextCombineUpright | undefined; "-webkit-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-webkit-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-webkit-text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "-webkit-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-webkit-text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "-webkit-text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "-webkit-text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "-webkit-text-fill-color"?: csstype.Property.WebkitTextFillColor | undefined; "-webkit-text-orientation"?: csstype.Property.TextOrientation | undefined; "-webkit-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-webkit-text-stroke-color"?: csstype.Property.WebkitTextStrokeColor | undefined; "-webkit-text-stroke-width"?: csstype.Property.WebkitTextStrokeWidth | undefined; "-webkit-text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "-webkit-touch-callout"?: csstype.Property.WebkitTouchCallout | undefined; "-webkit-transform"?: csstype.Property.Transform | undefined; "-webkit-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-webkit-transform-style"?: csstype.Property.TransformStyle | undefined; "-webkit-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-webkit-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-webkit-transition-property"?: csstype.Property.TransitionProperty | undefined; "-webkit-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-user-modify"?: csstype.Property.WebkitUserModify | undefined; "-webkit-user-select"?: csstype.Property.UserSelect | undefined; "-webkit-writing-mode"?: csstype.Property.WritingMode | undefined; "-moz-animation"?: csstype.Property.Animation | undefined; "-moz-border-image"?: csstype.Property.BorderImage | undefined; "-moz-column-rule"?: csstype.Property.ColumnRule | undefined; "-moz-columns"?: csstype.Property.Columns | undefined; "-moz-outline-radius"?: csstype.Property.MozOutlineRadius | undefined; "-ms-content-zoom-limit"?: csstype.Property.MsContentZoomLimit | undefined; "-ms-content-zoom-snap"?: csstype.Property.MsContentZoomSnap | undefined; "-ms-flex"?: csstype.Property.Flex | undefined; "-ms-scroll-limit"?: csstype.Property.MsScrollLimit | undefined; "-ms-scroll-snap-x"?: csstype.Property.MsScrollSnapX | undefined; "-ms-scroll-snap-y"?: csstype.Property.MsScrollSnapY | undefined; "-ms-transition"?: csstype.Property.Transition | undefined; "-webkit-animation"?: csstype.Property.Animation | undefined; "-webkit-border-before"?: csstype.Property.WebkitBorderBefore | undefined; "-webkit-border-image"?: csstype.Property.BorderImage | undefined; "-webkit-border-radius"?: csstype.Property.BorderRadius | undefined; "-webkit-column-rule"?: csstype.Property.ColumnRule | undefined; "-webkit-columns"?: csstype.Property.Columns | undefined; "-webkit-flex"?: csstype.Property.Flex | undefined; "-webkit-flex-flow"?: csstype.Property.FlexFlow | undefined; "-webkit-mask"?: csstype.Property.WebkitMask | undefined; "-webkit-mask-box-image"?: csstype.Property.MaskBorder | undefined; "-webkit-text-emphasis"?: csstype.Property.TextEmphasis | undefined; "-webkit-text-stroke"?: csstype.Property.WebkitTextStroke | undefined; "-webkit-transition"?: csstype.Property.Transition | undefined; "box-align"?: csstype.Property.BoxAlign | undefined; "box-direction"?: csstype.Property.BoxDirection | undefined; "box-flex"?: csstype.Property.BoxFlex | undefined; "box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "box-lines"?: csstype.Property.BoxLines | undefined; "box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "box-orient"?: csstype.Property.BoxOrient | undefined; "box-pack"?: csstype.Property.BoxPack | undefined; "grid-column-gap"?: csstype.Property.GridColumnGap | undefined; "grid-gap"?: csstype.Property.GridGap | undefined; "grid-row-gap"?: csstype.Property.GridRowGap | undefined; "ime-mode"?: csstype.Property.ImeMode | undefined; "offset-block"?: csstype.Property.InsetBlock | undefined; "offset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "offset-block-start"?: csstype.Property.InsetBlockStart | undefined; "offset-inline"?: csstype.Property.InsetInline | undefined; "offset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "offset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "scroll-snap-coordinate"?: csstype.Property.ScrollSnapCoordinate | undefined; "scroll-snap-destination"?: csstype.Property.ScrollSnapDestination | undefined; "scroll-snap-points-x"?: csstype.Property.ScrollSnapPointsX | undefined; "scroll-snap-points-y"?: csstype.Property.ScrollSnapPointsY | undefined; "scroll-snap-type-x"?: csstype.Property.ScrollSnapTypeX | undefined; "scroll-snap-type-y"?: csstype.Property.ScrollSnapTypeY | undefined; "-khtml-box-align"?: csstype.Property.BoxAlign | undefined; "-khtml-box-direction"?: csstype.Property.BoxDirection | undefined; "-khtml-box-flex"?: csstype.Property.BoxFlex | undefined; "-khtml-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-khtml-box-lines"?: csstype.Property.BoxLines | undefined; "-khtml-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-khtml-box-orient"?: csstype.Property.BoxOrient | undefined; "-khtml-box-pack"?: csstype.Property.BoxPack | undefined; "-khtml-line-break"?: csstype.Property.LineBreak | undefined; "-khtml-opacity"?: csstype.Property.Opacity | undefined; "-khtml-user-select"?: csstype.Property.UserSelect | undefined; "-moz-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-moz-background-clip"?: csstype.Property.BackgroundClip | undefined; "-moz-background-inline-policy"?: csstype.Property.BoxDecorationBreak | undefined; "-moz-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-moz-background-size"?: csstype.Property.BackgroundSize | undefined; "-moz-border-radius"?: csstype.Property.BorderRadius | undefined; "-moz-border-radius-bottomleft"?: csstype.Property.BorderBottomLeftRadius | undefined; "-moz-border-radius-bottomright"?: csstype.Property.BorderBottomRightRadius | undefined; "-moz-border-radius-topleft"?: csstype.Property.BorderTopLeftRadius | undefined; "-moz-border-radius-topright"?: csstype.Property.BorderTopRightRadius | undefined; "-moz-box-align"?: csstype.Property.BoxAlign | undefined; "-moz-box-direction"?: csstype.Property.BoxDirection | undefined; "-moz-box-flex"?: csstype.Property.BoxFlex | undefined; "-moz-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-moz-box-orient"?: csstype.Property.BoxOrient | undefined; "-moz-box-pack"?: csstype.Property.BoxPack | undefined; "-moz-box-shadow"?: csstype.Property.BoxShadow | undefined; "-moz-float-edge"?: csstype.Property.MozFloatEdge | undefined; "-moz-force-broken-image-icon"?: csstype.Property.MozForceBrokenImageIcon | undefined; "-moz-opacity"?: csstype.Property.Opacity | undefined; "-moz-outline"?: csstype.Property.Outline | undefined; "-moz-outline-color"?: csstype.Property.OutlineColor | undefined; "-moz-outline-style"?: csstype.Property.OutlineStyle | undefined; "-moz-outline-width"?: csstype.Property.OutlineWidth | undefined; "-moz-perspective"?: csstype.Property.Perspective | undefined; "-moz-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-moz-text-align-last"?: csstype.Property.TextAlignLast | undefined; "-moz-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-moz-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-moz-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-moz-transform"?: csstype.Property.Transform | undefined; "-moz-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-moz-transform-style"?: csstype.Property.TransformStyle | undefined; "-moz-transition"?: csstype.Property.Transition | undefined; "-moz-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-moz-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-moz-transition-property"?: csstype.Property.TransitionProperty | undefined; "-moz-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-moz-user-input"?: csstype.Property.MozUserInput | undefined; "-ms-ime-mode"?: csstype.Property.ImeMode | undefined; "-o-animation"?: csstype.Property.Animation | undefined; "-o-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-o-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-o-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-o-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-o-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-o-animation-name"?: csstype.Property.AnimationName | undefined; "-o-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-o-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-o-background-size"?: csstype.Property.BackgroundSize | undefined; "-o-border-image"?: csstype.Property.BorderImage | undefined; "-o-object-fit"?: csstype.Property.ObjectFit | undefined; "-o-object-position"?: csstype.Property.ObjectPosition | undefined; "-o-tab-size"?: csstype.Property.TabSize | undefined; "-o-text-overflow"?: csstype.Property.TextOverflow | undefined; "-o-transform"?: csstype.Property.Transform | undefined; "-o-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-o-transition"?: csstype.Property.Transition | undefined; "-o-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-o-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-o-transition-property"?: csstype.Property.TransitionProperty | undefined; "-o-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-box-align"?: csstype.Property.BoxAlign | undefined; "-webkit-box-direction"?: csstype.Property.BoxDirection | undefined; "-webkit-box-flex"?: csstype.Property.BoxFlex | undefined; "-webkit-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-webkit-box-lines"?: csstype.Property.BoxLines | undefined; "-webkit-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-webkit-box-orient"?: csstype.Property.BoxOrient | undefined; "-webkit-box-pack"?: csstype.Property.BoxPack | undefined; "alignment-baseline"?: csstype.Property.AlignmentBaseline | undefined; "baseline-shift"?: csstype.Property.BaselineShift | undefined; "clip-rule"?: csstype.Property.ClipRule | undefined; "color-interpolation"?: csstype.Property.ColorInterpolation | undefined; "color-rendering"?: csstype.Property.ColorRendering | undefined; "dominant-baseline"?: csstype.Property.DominantBaseline | undefined; "fill-opacity"?: csstype.Property.FillOpacity | undefined; "fill-rule"?: csstype.Property.FillRule | undefined; "flood-color"?: csstype.Property.FloodColor | undefined; "flood-opacity"?: csstype.Property.FloodOpacity | undefined; "glyph-orientation-vertical"?: csstype.Property.GlyphOrientationVertical | undefined; "lighting-color"?: csstype.Property.LightingColor | undefined; "marker-end"?: csstype.Property.MarkerEnd | undefined; "marker-mid"?: csstype.Property.MarkerMid | undefined; "marker-start"?: csstype.Property.MarkerStart | undefined; "shape-rendering"?: csstype.Property.ShapeRendering | undefined; "stop-color"?: csstype.Property.StopColor | undefined; "stop-opacity"?: csstype.Property.StopOpacity | undefined; "stroke-dasharray"?: csstype.Property.StrokeDasharray | undefined; "stroke-dashoffset"?: csstype.Property.StrokeDashoffset | undefined; "stroke-linecap"?: csstype.Property.StrokeLinecap | undefined; "stroke-linejoin"?: csstype.Property.StrokeLinejoin | undefined; "stroke-miterlimit"?: csstype.Property.StrokeMiterlimit | undefined; "stroke-opacity"?: csstype.Property.StrokeOpacity | undefined; "stroke-width"?: csstype.Property.StrokeWidth | undefined; "text-anchor"?: csstype.Property.TextAnchor | undefined; "vector-effect"?: csstype.Property.VectorEffect | undefined; }; style: Ref; }; /** * Reactive transform string implementing all native CSS transform properties. * * @param props * @param enableHardwareAcceleration */ declare function reactiveTransform(props?: TransformProperties, enableHardwareAcceleration?: boolean): { state: { x?: TransformValue | TransformValue[] | undefined; y?: TransformValue | TransformValue[] | undefined; z?: TransformValue | TransformValue[] | undefined; translateX?: TransformValue | TransformValue[] | undefined; translateY?: TransformValue | TransformValue[] | undefined; translateZ?: TransformValue | TransformValue[] | undefined; rotate?: TransformValue | TransformValue[] | undefined; rotateX?: TransformValue | TransformValue[] | undefined; rotateY?: TransformValue | TransformValue[] | undefined; rotateZ?: TransformValue | TransformValue[] | undefined; scale?: TransformValue | TransformValue[] | undefined; scaleX?: TransformValue | TransformValue[] | undefined; scaleY?: TransformValue | TransformValue[] | undefined; scaleZ?: TransformValue | TransformValue[] | undefined; skew?: TransformValue | TransformValue[] | undefined; skewX?: TransformValue | TransformValue[] | undefined; skewY?: TransformValue | TransformValue[] | undefined; originX?: TransformValue | TransformValue[] | undefined; originY?: TransformValue | TransformValue[] | undefined; originZ?: TransformValue | TransformValue[] | undefined; perspective?: TransformValue | TransformValue[] | undefined; transformPerspective?: TransformValue | TransformValue[] | undefined; }; transform: vue.Ref; }; /** * A Composable giving access to a StyleProperties object, and binding the generated style object to a target. * * @param target */ declare function useElementStyle(target: MaybeRef, onInit?: (initData: Partial) => void): { style: { [x: `--${string}`]: string | number | undefined; filter?: csstype.Property.Filter | undefined; fill?: csstype.Property.Fill | undefined; accentColor?: csstype.Property.AccentColor | undefined; alignContent?: csstype.Property.AlignContent | undefined; alignItems?: csstype.Property.AlignItems | undefined; alignSelf?: csstype.Property.AlignSelf | undefined; alignTracks?: csstype.Property.AlignTracks | undefined; animationComposition?: csstype.Property.AnimationComposition | undefined; animationDelay?: csstype.Property.AnimationDelay | undefined; animationDirection?: csstype.Property.AnimationDirection | undefined; animationDuration?: csstype.Property.AnimationDuration | undefined; animationFillMode?: csstype.Property.AnimationFillMode | undefined; animationIterationCount?: csstype.Property.AnimationIterationCount | undefined; animationName?: csstype.Property.AnimationName | undefined; animationPlayState?: csstype.Property.AnimationPlayState | undefined; animationRangeEnd?: csstype.Property.AnimationRangeEnd | undefined; animationRangeStart?: csstype.Property.AnimationRangeStart | undefined; animationTimeline?: csstype.Property.AnimationTimeline | undefined; animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; appearance?: csstype.Property.Appearance | undefined; aspectRatio?: csstype.Property.AspectRatio | undefined; backdropFilter?: csstype.Property.BackdropFilter | undefined; backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined; backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined; backgroundClip?: csstype.Property.BackgroundClip | undefined; backgroundColor?: csstype.Property.BackgroundColor | undefined; backgroundImage?: csstype.Property.BackgroundImage | undefined; backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; backgroundPositionX?: csstype.Property.BackgroundPositionX | undefined; backgroundPositionY?: csstype.Property.BackgroundPositionY | undefined; backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined; backgroundSize?: csstype.Property.BackgroundSize | undefined; blockOverflow?: csstype.Property.BlockOverflow | undefined; blockSize?: csstype.Property.BlockSize | undefined; borderBlockColor?: csstype.Property.BorderBlockColor | undefined; borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined; borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined; borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth | undefined; borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined; borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined; borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth | undefined; borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined; borderBlockWidth?: csstype.Property.BorderBlockWidth | undefined; borderBottomColor?: csstype.Property.BorderBottomColor | undefined; borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined; borderBottomWidth?: csstype.Property.BorderBottomWidth | undefined; borderCollapse?: csstype.Property.BorderCollapse | undefined; borderEndEndRadius?: csstype.Property.BorderEndEndRadius | undefined; borderEndStartRadius?: csstype.Property.BorderEndStartRadius | undefined; borderImageOutset?: csstype.Property.BorderImageOutset | undefined; borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined; borderImageSlice?: csstype.Property.BorderImageSlice | undefined; borderImageSource?: csstype.Property.BorderImageSource | undefined; borderImageWidth?: csstype.Property.BorderImageWidth | undefined; borderInlineColor?: csstype.Property.BorderInlineColor | undefined; borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined; borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined; borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth | undefined; borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined; borderInlineWidth?: csstype.Property.BorderInlineWidth | undefined; borderLeftColor?: csstype.Property.BorderLeftColor | undefined; borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined; borderLeftWidth?: csstype.Property.BorderLeftWidth | undefined; borderRightColor?: csstype.Property.BorderRightColor | undefined; borderRightStyle?: csstype.Property.BorderRightStyle | undefined; borderRightWidth?: csstype.Property.BorderRightWidth | undefined; borderSpacing?: csstype.Property.BorderSpacing | undefined; borderStartEndRadius?: csstype.Property.BorderStartEndRadius | undefined; borderStartStartRadius?: csstype.Property.BorderStartStartRadius | undefined; borderTopColor?: csstype.Property.BorderTopColor | undefined; borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; borderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; borderTopStyle?: csstype.Property.BorderTopStyle | undefined; borderTopWidth?: csstype.Property.BorderTopWidth | undefined; bottom?: csstype.Property.Bottom | undefined; boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; boxShadow?: csstype.Property.BoxShadow | undefined; boxSizing?: csstype.Property.BoxSizing | undefined; breakAfter?: csstype.Property.BreakAfter | undefined; breakBefore?: csstype.Property.BreakBefore | undefined; breakInside?: csstype.Property.BreakInside | undefined; captionSide?: csstype.Property.CaptionSide | undefined; caretColor?: csstype.Property.CaretColor | undefined; caretShape?: csstype.Property.CaretShape | undefined; clear?: csstype.Property.Clear | undefined; clipPath?: csstype.Property.ClipPath | undefined; color?: csstype.Property.Color | undefined; colorAdjust?: csstype.Property.PrintColorAdjust | undefined; colorScheme?: csstype.Property.ColorScheme | undefined; columnCount?: csstype.Property.ColumnCount | undefined; columnFill?: csstype.Property.ColumnFill | undefined; columnGap?: csstype.Property.ColumnGap | undefined; columnRuleColor?: csstype.Property.ColumnRuleColor | undefined; columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; columnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; columnSpan?: csstype.Property.ColumnSpan | undefined; columnWidth?: csstype.Property.ColumnWidth | undefined; contain?: csstype.Property.Contain | undefined; containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize | undefined; containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight | undefined; containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize | undefined; containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth | undefined; containerName?: csstype.Property.ContainerName | undefined; containerType?: csstype.Property.ContainerType | undefined; content?: csstype.Property.Content | undefined; contentVisibility?: csstype.Property.ContentVisibility | undefined; counterIncrement?: csstype.Property.CounterIncrement | undefined; counterReset?: csstype.Property.CounterReset | undefined; counterSet?: csstype.Property.CounterSet | undefined; cursor?: csstype.Property.Cursor | undefined; direction?: csstype.Property.Direction | undefined; display?: csstype.Property.Display | undefined; emptyCells?: csstype.Property.EmptyCells | undefined; flexBasis?: csstype.Property.FlexBasis | undefined; flexDirection?: csstype.Property.FlexDirection | undefined; flexGrow?: csstype.Property.FlexGrow | undefined; flexShrink?: csstype.Property.FlexShrink | undefined; flexWrap?: csstype.Property.FlexWrap | undefined; float?: csstype.Property.Float | undefined; fontFamily?: csstype.Property.FontFamily | undefined; fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; fontKerning?: csstype.Property.FontKerning | undefined; fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined; fontPalette?: csstype.Property.FontPalette | undefined; fontSize?: csstype.Property.FontSize | undefined; fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined; fontSmooth?: csstype.Property.FontSmooth | undefined; fontStretch?: csstype.Property.FontStretch | undefined; fontStyle?: csstype.Property.FontStyle | undefined; fontSynthesis?: csstype.Property.FontSynthesis | undefined; fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined; fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined; fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined; fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined; fontVariant?: csstype.Property.FontVariant | undefined; fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined; fontVariantCaps?: csstype.Property.FontVariantCaps | undefined; fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined; fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined; fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined; fontVariantPosition?: csstype.Property.FontVariantPosition | undefined; fontVariationSettings?: csstype.Property.FontVariationSettings | undefined; fontWeight?: csstype.Property.FontWeight | undefined; forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined; gridAutoColumns?: csstype.Property.GridAutoColumns | undefined; gridAutoFlow?: csstype.Property.GridAutoFlow | undefined; gridAutoRows?: csstype.Property.GridAutoRows | undefined; gridColumnEnd?: csstype.Property.GridColumnEnd | undefined; gridColumnStart?: csstype.Property.GridColumnStart | undefined; gridRowEnd?: csstype.Property.GridRowEnd | undefined; gridRowStart?: csstype.Property.GridRowStart | undefined; gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined; gridTemplateColumns?: csstype.Property.GridTemplateColumns | undefined; gridTemplateRows?: csstype.Property.GridTemplateRows | undefined; hangingPunctuation?: csstype.Property.HangingPunctuation | undefined; height?: csstype.Property.Height | undefined; hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined; hyphens?: csstype.Property.Hyphens | undefined; imageOrientation?: csstype.Property.ImageOrientation | undefined; imageRendering?: csstype.Property.ImageRendering | undefined; imageResolution?: csstype.Property.ImageResolution | undefined; initialLetter?: csstype.Property.InitialLetter | undefined; inlineSize?: csstype.Property.InlineSize | undefined; inputSecurity?: csstype.Property.InputSecurity | undefined; insetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; insetBlockStart?: csstype.Property.InsetBlockStart | undefined; insetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; insetInlineStart?: csstype.Property.InsetInlineStart | undefined; isolation?: csstype.Property.Isolation | undefined; justifyContent?: csstype.Property.JustifyContent | undefined; justifyItems?: csstype.Property.JustifyItems | undefined; justifySelf?: csstype.Property.JustifySelf | undefined; justifyTracks?: csstype.Property.JustifyTracks | undefined; left?: csstype.Property.Left | undefined; letterSpacing?: csstype.Property.LetterSpacing | undefined; lineBreak?: csstype.Property.LineBreak | undefined; lineHeight?: csstype.Property.LineHeight | undefined; lineHeightStep?: csstype.Property.LineHeightStep | undefined; listStyleImage?: csstype.Property.ListStyleImage | undefined; listStylePosition?: csstype.Property.ListStylePosition | undefined; listStyleType?: csstype.Property.ListStyleType | undefined; marginBlockEnd?: csstype.Property.MarginBlockEnd | undefined; marginBlockStart?: csstype.Property.MarginBlockStart | undefined; marginBottom?: csstype.Property.MarginBottom | undefined; marginInlineEnd?: csstype.Property.MarginInlineEnd | undefined; marginInlineStart?: csstype.Property.MarginInlineStart | undefined; marginLeft?: csstype.Property.MarginLeft | undefined; marginRight?: csstype.Property.MarginRight | undefined; marginTop?: csstype.Property.MarginTop | undefined; marginTrim?: csstype.Property.MarginTrim | undefined; maskBorderMode?: csstype.Property.MaskBorderMode | undefined; maskBorderOutset?: csstype.Property.MaskBorderOutset | undefined; maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined; maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined; maskBorderSource?: csstype.Property.MaskBorderSource | undefined; maskBorderWidth?: csstype.Property.MaskBorderWidth | undefined; maskClip?: csstype.Property.MaskClip | undefined; maskComposite?: csstype.Property.MaskComposite | undefined; maskImage?: csstype.Property.MaskImage | undefined; maskMode?: csstype.Property.MaskMode | undefined; maskOrigin?: csstype.Property.MaskOrigin | undefined; maskPosition?: csstype.Property.MaskPosition | undefined; maskRepeat?: csstype.Property.MaskRepeat | undefined; maskSize?: csstype.Property.MaskSize | undefined; maskType?: csstype.Property.MaskType | undefined; masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined; mathDepth?: csstype.Property.MathDepth | undefined; mathShift?: csstype.Property.MathShift | undefined; mathStyle?: csstype.Property.MathStyle | undefined; maxBlockSize?: csstype.Property.MaxBlockSize | undefined; maxHeight?: csstype.Property.MaxHeight | undefined; maxInlineSize?: csstype.Property.MaxInlineSize | undefined; maxLines?: csstype.Property.MaxLines | undefined; maxWidth?: csstype.Property.MaxWidth | undefined; minBlockSize?: csstype.Property.MinBlockSize | undefined; minHeight?: csstype.Property.MinHeight | undefined; minInlineSize?: csstype.Property.MinInlineSize | undefined; minWidth?: csstype.Property.MinWidth | undefined; mixBlendMode?: csstype.Property.MixBlendMode | undefined; motionDistance?: csstype.Property.OffsetDistance | undefined; motionPath?: csstype.Property.OffsetPath | undefined; motionRotation?: csstype.Property.OffsetRotate | undefined; objectFit?: csstype.Property.ObjectFit | undefined; objectPosition?: csstype.Property.ObjectPosition | undefined; offsetAnchor?: csstype.Property.OffsetAnchor | undefined; offsetDistance?: csstype.Property.OffsetDistance | undefined; offsetPath?: csstype.Property.OffsetPath | undefined; offsetPosition?: csstype.Property.OffsetPosition | undefined; offsetRotate?: csstype.Property.OffsetRotate | undefined; offsetRotation?: csstype.Property.OffsetRotate | undefined; opacity?: csstype.Property.Opacity | undefined; order?: csstype.Property.Order | undefined; orphans?: csstype.Property.Orphans | undefined; outlineColor?: csstype.Property.OutlineColor | undefined; outlineOffset?: csstype.Property.OutlineOffset | undefined; outlineStyle?: csstype.Property.OutlineStyle | undefined; outlineWidth?: csstype.Property.OutlineWidth | undefined; overflowAnchor?: csstype.Property.OverflowAnchor | undefined; overflowBlock?: csstype.Property.OverflowBlock | undefined; overflowClipBox?: csstype.Property.OverflowClipBox | undefined; overflowClipMargin?: csstype.Property.OverflowClipMargin | undefined; overflowInline?: csstype.Property.OverflowInline | undefined; overflowWrap?: csstype.Property.OverflowWrap | undefined; overflowX?: csstype.Property.OverflowX | undefined; overflowY?: csstype.Property.OverflowY | undefined; overlay?: csstype.Property.Overlay | undefined; overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined; overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined; overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined; overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined; paddingBlockEnd?: csstype.Property.PaddingBlockEnd | undefined; paddingBlockStart?: csstype.Property.PaddingBlockStart | undefined; paddingBottom?: csstype.Property.PaddingBottom | undefined; paddingInlineEnd?: csstype.Property.PaddingInlineEnd | undefined; paddingInlineStart?: csstype.Property.PaddingInlineStart | undefined; paddingLeft?: csstype.Property.PaddingLeft | undefined; paddingRight?: csstype.Property.PaddingRight | undefined; paddingTop?: csstype.Property.PaddingTop | undefined; page?: csstype.Property.Page | undefined; pageBreakAfter?: csstype.Property.PageBreakAfter | undefined; pageBreakBefore?: csstype.Property.PageBreakBefore | undefined; pageBreakInside?: csstype.Property.PageBreakInside | undefined; paintOrder?: csstype.Property.PaintOrder | undefined; perspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; pointerEvents?: csstype.Property.PointerEvents | undefined; position?: csstype.Property.Position | undefined; printColorAdjust?: csstype.Property.PrintColorAdjust | undefined; quotes?: csstype.Property.Quotes | undefined; resize?: csstype.Property.Resize | undefined; right?: csstype.Property.Right | undefined; rowGap?: csstype.Property.RowGap | undefined; rubyAlign?: csstype.Property.RubyAlign | undefined; rubyMerge?: csstype.Property.RubyMerge | undefined; rubyPosition?: csstype.Property.RubyPosition | undefined; scrollBehavior?: csstype.Property.ScrollBehavior | undefined; scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd | undefined; scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart | undefined; scrollMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd | undefined; scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart | undefined; scrollMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd | undefined; scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart | undefined; scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom | undefined; scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd | undefined; scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart | undefined; scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft | undefined; scrollPaddingRight?: csstype.Property.ScrollPaddingRight | undefined; scrollPaddingTop?: csstype.Property.ScrollPaddingTop | undefined; scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined; scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollSnapMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollSnapMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined; scrollSnapType?: csstype.Property.ScrollSnapType | undefined; scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined; scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined; scrollbarColor?: csstype.Property.ScrollbarColor | undefined; scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined; scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined; shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined; shapeMargin?: csstype.Property.ShapeMargin | undefined; shapeOutside?: csstype.Property.ShapeOutside | undefined; tabSize?: csstype.Property.TabSize | undefined; tableLayout?: csstype.Property.TableLayout | undefined; textAlign?: csstype.Property.TextAlign | undefined; textAlignLast?: csstype.Property.TextAlignLast | undefined; textCombineUpright?: csstype.Property.TextCombineUpright | undefined; textDecorationColor?: csstype.Property.TextDecorationColor | undefined; textDecorationLine?: csstype.Property.TextDecorationLine | undefined; textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined; textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; textDecorationThickness?: csstype.Property.TextDecorationThickness | undefined; textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; textIndent?: csstype.Property.TextIndent | undefined; textJustify?: csstype.Property.TextJustify | undefined; textOrientation?: csstype.Property.TextOrientation | undefined; textOverflow?: csstype.Property.TextOverflow | undefined; textRendering?: csstype.Property.TextRendering | undefined; textShadow?: csstype.Property.TextShadow | undefined; textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; textTransform?: csstype.Property.TextTransform | undefined; textUnderlineOffset?: csstype.Property.TextUnderlineOffset | undefined; textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; textWrap?: csstype.Property.TextWrap | undefined; timelineScope?: csstype.Property.TimelineScope | undefined; top?: csstype.Property.Top | undefined; touchAction?: csstype.Property.TouchAction | undefined; transitionBehavior?: csstype.Property.TransitionBehavior | undefined; transitionDelay?: csstype.Property.TransitionDelay | undefined; transitionDuration?: csstype.Property.TransitionDuration | undefined; transitionProperty?: csstype.Property.TransitionProperty | undefined; transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; translate?: csstype.Property.Translate | undefined; unicodeBidi?: csstype.Property.UnicodeBidi | undefined; userSelect?: csstype.Property.UserSelect | undefined; verticalAlign?: csstype.Property.VerticalAlign | undefined; viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined; viewTimelineInset?: csstype.Property.ViewTimelineInset | undefined; viewTimelineName?: csstype.Property.ViewTimelineName | undefined; viewTransitionName?: csstype.Property.ViewTransitionName | undefined; visibility?: csstype.Property.Visibility | undefined; whiteSpace?: csstype.Property.WhiteSpace | undefined; whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined; whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined; widows?: csstype.Property.Widows | undefined; width?: csstype.Property.Width | undefined; willChange?: csstype.Property.WillChange | undefined; wordBreak?: csstype.Property.WordBreak | undefined; wordSpacing?: csstype.Property.WordSpacing | undefined; wordWrap?: csstype.Property.WordWrap | undefined; writingMode?: csstype.Property.WritingMode | undefined; zIndex?: csstype.Property.ZIndex | undefined; zoom?: csstype.Property.Zoom | undefined; all?: csstype.Globals | undefined; animation?: csstype.Property.Animation | undefined; animationRange?: csstype.Property.AnimationRange | undefined; background?: csstype.Property.Background | undefined; backgroundPosition?: csstype.Property.BackgroundPosition | undefined; border?: csstype.Property.Border | undefined; borderBlock?: csstype.Property.BorderBlock | undefined; borderBlockEnd?: csstype.Property.BorderBlockEnd | undefined; borderBlockStart?: csstype.Property.BorderBlockStart | undefined; borderBottom?: csstype.Property.BorderBottom | undefined; borderColor?: csstype.Property.BorderColor | undefined; borderImage?: csstype.Property.BorderImage | undefined; borderInline?: csstype.Property.BorderInline | undefined; borderInlineEnd?: csstype.Property.BorderInlineEnd | undefined; borderInlineStart?: csstype.Property.BorderInlineStart | undefined; borderLeft?: csstype.Property.BorderLeft | undefined; borderRadius?: csstype.Property.BorderRadius | undefined; borderRight?: csstype.Property.BorderRight | undefined; borderStyle?: csstype.Property.BorderStyle | undefined; borderTop?: csstype.Property.BorderTop | undefined; borderWidth?: csstype.Property.BorderWidth | undefined; caret?: csstype.Property.Caret | undefined; columnRule?: csstype.Property.ColumnRule | undefined; columns?: csstype.Property.Columns | undefined; containIntrinsicSize?: csstype.Property.ContainIntrinsicSize | undefined; container?: csstype.Property.Container | undefined; flex?: csstype.Property.Flex | undefined; flexFlow?: csstype.Property.FlexFlow | undefined; font?: csstype.Property.Font | undefined; gap?: csstype.Property.Gap | undefined; grid?: csstype.Property.Grid | undefined; gridArea?: csstype.Property.GridArea | undefined; gridColumn?: csstype.Property.GridColumn | undefined; gridRow?: csstype.Property.GridRow | undefined; gridTemplate?: csstype.Property.GridTemplate | undefined; inset?: csstype.Property.Inset | undefined; insetBlock?: csstype.Property.InsetBlock | undefined; insetInline?: csstype.Property.InsetInline | undefined; lineClamp?: csstype.Property.LineClamp | undefined; listStyle?: csstype.Property.ListStyle | undefined; margin?: csstype.Property.Margin | undefined; marginBlock?: csstype.Property.MarginBlock | undefined; marginInline?: csstype.Property.MarginInline | undefined; mask?: csstype.Property.Mask | undefined; maskBorder?: csstype.Property.MaskBorder | undefined; motion?: csstype.Property.Offset | undefined; offset?: csstype.Property.Offset | undefined; outline?: csstype.Property.Outline | undefined; overflow?: csstype.Property.Overflow | undefined; overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined; padding?: csstype.Property.Padding | undefined; paddingBlock?: csstype.Property.PaddingBlock | undefined; paddingInline?: csstype.Property.PaddingInline | undefined; placeContent?: csstype.Property.PlaceContent | undefined; placeItems?: csstype.Property.PlaceItems | undefined; placeSelf?: csstype.Property.PlaceSelf | undefined; scrollMargin?: csstype.Property.ScrollMargin | undefined; scrollMarginBlock?: csstype.Property.ScrollMarginBlock | undefined; scrollMarginInline?: csstype.Property.ScrollMarginInline | undefined; scrollPadding?: csstype.Property.ScrollPadding | undefined; scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock | undefined; scrollPaddingInline?: csstype.Property.ScrollPaddingInline | undefined; scrollSnapMargin?: csstype.Property.ScrollMargin | undefined; scrollTimeline?: csstype.Property.ScrollTimeline | undefined; textDecoration?: csstype.Property.TextDecoration | undefined; textEmphasis?: csstype.Property.TextEmphasis | undefined; viewTimeline?: csstype.Property.ViewTimeline | undefined; MozAnimationDelay?: csstype.Property.AnimationDelay | undefined; MozAnimationDirection?: csstype.Property.AnimationDirection | undefined; MozAnimationDuration?: csstype.Property.AnimationDuration | undefined; MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; MozAnimationName?: csstype.Property.AnimationName | undefined; MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; MozAppearance?: csstype.Property.MozAppearance | undefined; MozBinding?: csstype.Property.MozBinding | undefined; MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined; MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined; MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined; MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined; MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined; MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined; MozBoxSizing?: csstype.Property.BoxSizing | undefined; MozColumnCount?: csstype.Property.ColumnCount | undefined; MozColumnFill?: csstype.Property.ColumnFill | undefined; MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; MozColumnWidth?: csstype.Property.ColumnWidth | undefined; MozContextProperties?: csstype.Property.MozContextProperties | undefined; MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; MozHyphens?: csstype.Property.Hyphens | undefined; MozImageRegion?: csstype.Property.MozImageRegion | undefined; MozMarginEnd?: csstype.Property.MarginInlineEnd | undefined; MozMarginStart?: csstype.Property.MarginInlineStart | undefined; MozOrient?: csstype.Property.MozOrient | undefined; MozOsxFontSmoothing?: csstype.Property.FontSmooth | undefined; MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft | undefined; MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright | undefined; MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft | undefined; MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright | undefined; MozPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; MozPaddingStart?: csstype.Property.PaddingInlineStart | undefined; MozStackSizing?: csstype.Property.MozStackSizing | undefined; MozTabSize?: csstype.Property.TabSize | undefined; MozTextBlink?: csstype.Property.MozTextBlink | undefined; MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; MozUserFocus?: csstype.Property.MozUserFocus | undefined; MozUserModify?: csstype.Property.MozUserModify | undefined; MozUserSelect?: csstype.Property.UserSelect | undefined; MozWindowDragging?: csstype.Property.MozWindowDragging | undefined; MozWindowShadow?: csstype.Property.MozWindowShadow | undefined; msAccelerator?: csstype.Property.MsAccelerator | undefined; msBlockProgression?: csstype.Property.MsBlockProgression | undefined; msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined; msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined; msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined; msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined; msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined; msContentZooming?: csstype.Property.MsContentZooming | undefined; msFilter?: csstype.Property.MsFilter | undefined; msFlexDirection?: csstype.Property.FlexDirection | undefined; msFlexPositive?: csstype.Property.FlexGrow | undefined; msFlowFrom?: csstype.Property.MsFlowFrom | undefined; msFlowInto?: csstype.Property.MsFlowInto | undefined; msGridColumns?: csstype.Property.MsGridColumns | undefined; msGridRows?: csstype.Property.MsGridRows | undefined; msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined; msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined; msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined; msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone | undefined; msHyphens?: csstype.Property.Hyphens | undefined; msImeAlign?: csstype.Property.MsImeAlign | undefined; msLineBreak?: csstype.Property.LineBreak | undefined; msOrder?: csstype.Property.Order | undefined; msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined; msOverflowX?: csstype.Property.OverflowX | undefined; msOverflowY?: csstype.Property.OverflowY | undefined; msScrollChaining?: csstype.Property.MsScrollChaining | undefined; msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax | undefined; msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin | undefined; msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax | undefined; msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin | undefined; msScrollRails?: csstype.Property.MsScrollRails | undefined; msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined; msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined; msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined; msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined; msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined; msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined; msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined; msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined; msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined; msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined; msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined; msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined; msTextAutospace?: csstype.Property.MsTextAutospace | undefined; msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined; msTextOverflow?: csstype.Property.TextOverflow | undefined; msTouchAction?: csstype.Property.TouchAction | undefined; msTouchSelect?: csstype.Property.MsTouchSelect | undefined; msTransform?: csstype.Property.Transform | undefined; msTransformOrigin?: csstype.Property.TransformOrigin | undefined; msTransitionDelay?: csstype.Property.TransitionDelay | undefined; msTransitionDuration?: csstype.Property.TransitionDuration | undefined; msTransitionProperty?: csstype.Property.TransitionProperty | undefined; msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; msUserSelect?: csstype.Property.MsUserSelect | undefined; msWordBreak?: csstype.Property.WordBreak | undefined; msWrapFlow?: csstype.Property.MsWrapFlow | undefined; msWrapMargin?: csstype.Property.MsWrapMargin | undefined; msWrapThrough?: csstype.Property.MsWrapThrough | undefined; msWritingMode?: csstype.Property.WritingMode | undefined; WebkitAlignContent?: csstype.Property.AlignContent | undefined; WebkitAlignItems?: csstype.Property.AlignItems | undefined; WebkitAlignSelf?: csstype.Property.AlignSelf | undefined; WebkitAnimationDelay?: csstype.Property.AnimationDelay | undefined; WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined; WebkitAnimationDuration?: csstype.Property.AnimationDuration | undefined; WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; WebkitAnimationName?: csstype.Property.AnimationName | undefined; WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; WebkitAppearance?: csstype.Property.WebkitAppearance | undefined; WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined; WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined; WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; WebkitBackgroundSize?: csstype.Property.BackgroundSize | undefined; WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined; WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined; WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth | undefined; WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined; WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; WebkitBoxReflect?: csstype.Property.WebkitBoxReflect | undefined; WebkitBoxShadow?: csstype.Property.BoxShadow | undefined; WebkitBoxSizing?: csstype.Property.BoxSizing | undefined; WebkitClipPath?: csstype.Property.ClipPath | undefined; WebkitColumnCount?: csstype.Property.ColumnCount | undefined; WebkitColumnFill?: csstype.Property.ColumnFill | undefined; WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined; WebkitColumnWidth?: csstype.Property.ColumnWidth | undefined; WebkitFilter?: csstype.Property.Filter | undefined; WebkitFlexBasis?: csstype.Property.FlexBasis | undefined; WebkitFlexDirection?: csstype.Property.FlexDirection | undefined; WebkitFlexGrow?: csstype.Property.FlexGrow | undefined; WebkitFlexShrink?: csstype.Property.FlexShrink | undefined; WebkitFlexWrap?: csstype.Property.FlexWrap | undefined; WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; WebkitFontKerning?: csstype.Property.FontKerning | undefined; WebkitFontSmoothing?: csstype.Property.FontSmooth | undefined; WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; WebkitHyphens?: csstype.Property.Hyphens | undefined; WebkitInitialLetter?: csstype.Property.InitialLetter | undefined; WebkitJustifyContent?: csstype.Property.JustifyContent | undefined; WebkitLineBreak?: csstype.Property.LineBreak | undefined; WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined; WebkitMarginEnd?: csstype.Property.MarginInlineEnd | undefined; WebkitMarginStart?: csstype.Property.MarginInlineStart | undefined; WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined; WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset | undefined; WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined; WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined; WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined; WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth | undefined; WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined; WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined; WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined; WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined; WebkitMaskPosition?: csstype.Property.WebkitMaskPosition | undefined; WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX | undefined; WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY | undefined; WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined; WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined; WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined; WebkitMaskSize?: csstype.Property.WebkitMaskSize | undefined; WebkitMaxInlineSize?: csstype.Property.MaxInlineSize | undefined; WebkitOrder?: csstype.Property.Order | undefined; WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined; WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; WebkitPaddingStart?: csstype.Property.PaddingInlineStart | undefined; WebkitPerspective?: csstype.Property.Perspective | undefined; WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined; WebkitRubyPosition?: csstype.Property.RubyPosition | undefined; WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined; WebkitShapeMargin?: csstype.Property.ShapeMargin | undefined; WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined; WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined; WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined; WebkitTextOrientation?: csstype.Property.TextOrientation | undefined; WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined; WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth | undefined; WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined; WebkitTransform?: csstype.Property.Transform | undefined; WebkitTransformOrigin?: csstype.Property.TransformOrigin | undefined; WebkitTransformStyle?: csstype.Property.TransformStyle | undefined; WebkitTransitionDelay?: csstype.Property.TransitionDelay | undefined; WebkitTransitionDuration?: csstype.Property.TransitionDuration | undefined; WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined; WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitUserModify?: csstype.Property.WebkitUserModify | undefined; WebkitUserSelect?: csstype.Property.UserSelect | undefined; WebkitWritingMode?: csstype.Property.WritingMode | undefined; MozAnimation?: csstype.Property.Animation | undefined; MozBorderImage?: csstype.Property.BorderImage | undefined; MozColumnRule?: csstype.Property.ColumnRule | undefined; MozColumns?: csstype.Property.Columns | undefined; MozOutlineRadius?: csstype.Property.MozOutlineRadius | undefined; msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined; msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined; msFlex?: csstype.Property.Flex | undefined; msScrollLimit?: csstype.Property.MsScrollLimit | undefined; msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined; msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined; msTransition?: csstype.Property.Transition | undefined; WebkitAnimation?: csstype.Property.Animation | undefined; WebkitBorderBefore?: csstype.Property.WebkitBorderBefore | undefined; WebkitBorderImage?: csstype.Property.BorderImage | undefined; WebkitBorderRadius?: csstype.Property.BorderRadius | undefined; WebkitColumnRule?: csstype.Property.ColumnRule | undefined; WebkitColumns?: csstype.Property.Columns | undefined; WebkitFlex?: csstype.Property.Flex | undefined; WebkitFlexFlow?: csstype.Property.FlexFlow | undefined; WebkitMask?: csstype.Property.WebkitMask | undefined; WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined; WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined; WebkitTextStroke?: csstype.Property.WebkitTextStroke | undefined; WebkitTransition?: csstype.Property.Transition | undefined; azimuth?: csstype.Property.Azimuth | undefined; boxAlign?: csstype.Property.BoxAlign | undefined; boxDirection?: csstype.Property.BoxDirection | undefined; boxFlex?: csstype.Property.BoxFlex | undefined; boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; boxLines?: csstype.Property.BoxLines | undefined; boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; boxOrient?: csstype.Property.BoxOrient | undefined; boxPack?: csstype.Property.BoxPack | undefined; clip?: csstype.Property.Clip | undefined; gridColumnGap?: csstype.Property.GridColumnGap | undefined; gridGap?: csstype.Property.GridGap | undefined; gridRowGap?: csstype.Property.GridRowGap | undefined; imeMode?: csstype.Property.ImeMode | undefined; offsetBlock?: csstype.Property.InsetBlock | undefined; offsetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; offsetBlockStart?: csstype.Property.InsetBlockStart | undefined; offsetInline?: csstype.Property.InsetInline | undefined; offsetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; offsetInlineStart?: csstype.Property.InsetInlineStart | undefined; scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate | undefined; scrollSnapDestination?: csstype.Property.ScrollSnapDestination | undefined; scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined; scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined; scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined; scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined; KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined; KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined; KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined; KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; KhtmlBoxLines?: csstype.Property.BoxLines | undefined; KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined; KhtmlBoxPack?: csstype.Property.BoxPack | undefined; KhtmlLineBreak?: csstype.Property.LineBreak | undefined; KhtmlOpacity?: csstype.Property.Opacity | undefined; KhtmlUserSelect?: csstype.Property.UserSelect | undefined; MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; MozBackgroundClip?: csstype.Property.BackgroundClip | undefined; MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined; MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; MozBackgroundSize?: csstype.Property.BackgroundSize | undefined; MozBorderRadius?: csstype.Property.BorderRadius | undefined; MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius | undefined; MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius | undefined; MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius | undefined; MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius | undefined; MozBoxAlign?: csstype.Property.BoxAlign | undefined; MozBoxDirection?: csstype.Property.BoxDirection | undefined; MozBoxFlex?: csstype.Property.BoxFlex | undefined; MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; MozBoxOrient?: csstype.Property.BoxOrient | undefined; MozBoxPack?: csstype.Property.BoxPack | undefined; MozBoxShadow?: csstype.Property.BoxShadow | undefined; MozFloatEdge?: csstype.Property.MozFloatEdge | undefined; MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined; MozOpacity?: csstype.Property.Opacity | undefined; MozOutline?: csstype.Property.Outline | undefined; MozOutlineColor?: csstype.Property.OutlineColor | undefined; MozOutlineStyle?: csstype.Property.OutlineStyle | undefined; MozOutlineWidth?: csstype.Property.OutlineWidth | undefined; MozPerspective?: csstype.Property.Perspective | undefined; MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; MozTextAlignLast?: csstype.Property.TextAlignLast | undefined; MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; MozTransform?: csstype.Property.Transform | undefined; MozTransformOrigin?: csstype.Property.TransformOrigin | undefined; MozTransformStyle?: csstype.Property.TransformStyle | undefined; MozTransition?: csstype.Property.Transition | undefined; MozTransitionDelay?: csstype.Property.TransitionDelay | undefined; MozTransitionDuration?: csstype.Property.TransitionDuration | undefined; MozTransitionProperty?: csstype.Property.TransitionProperty | undefined; MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; MozUserInput?: csstype.Property.MozUserInput | undefined; msImeMode?: csstype.Property.ImeMode | undefined; OAnimation?: csstype.Property.Animation | undefined; OAnimationDelay?: csstype.Property.AnimationDelay | undefined; OAnimationDirection?: csstype.Property.AnimationDirection | undefined; OAnimationDuration?: csstype.Property.AnimationDuration | undefined; OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; OAnimationName?: csstype.Property.AnimationName | undefined; OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; OBackgroundSize?: csstype.Property.BackgroundSize | undefined; OBorderImage?: csstype.Property.BorderImage | undefined; OObjectFit?: csstype.Property.ObjectFit | undefined; OObjectPosition?: csstype.Property.ObjectPosition | undefined; OTabSize?: csstype.Property.TabSize | undefined; OTextOverflow?: csstype.Property.TextOverflow | undefined; OTransform?: csstype.Property.Transform | undefined; OTransformOrigin?: csstype.Property.TransformOrigin | undefined; OTransition?: csstype.Property.Transition | undefined; OTransitionDelay?: csstype.Property.TransitionDelay | undefined; OTransitionDuration?: csstype.Property.TransitionDuration | undefined; OTransitionProperty?: csstype.Property.TransitionProperty | undefined; OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitBoxAlign?: csstype.Property.BoxAlign | undefined; WebkitBoxDirection?: csstype.Property.BoxDirection | undefined; WebkitBoxFlex?: csstype.Property.BoxFlex | undefined; WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; WebkitBoxLines?: csstype.Property.BoxLines | undefined; WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; WebkitBoxOrient?: csstype.Property.BoxOrient | undefined; WebkitBoxPack?: csstype.Property.BoxPack | undefined; alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined; baselineShift?: csstype.Property.BaselineShift | undefined; clipRule?: csstype.Property.ClipRule | undefined; colorInterpolation?: csstype.Property.ColorInterpolation | undefined; colorRendering?: csstype.Property.ColorRendering | undefined; dominantBaseline?: csstype.Property.DominantBaseline | undefined; fillOpacity?: csstype.Property.FillOpacity | undefined; fillRule?: csstype.Property.FillRule | undefined; floodColor?: csstype.Property.FloodColor | undefined; floodOpacity?: csstype.Property.FloodOpacity | undefined; glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined; lightingColor?: csstype.Property.LightingColor | undefined; marker?: csstype.Property.Marker | undefined; markerEnd?: csstype.Property.MarkerEnd | undefined; markerMid?: csstype.Property.MarkerMid | undefined; markerStart?: csstype.Property.MarkerStart | undefined; shapeRendering?: csstype.Property.ShapeRendering | undefined; stopColor?: csstype.Property.StopColor | undefined; stopOpacity?: csstype.Property.StopOpacity | undefined; stroke?: csstype.Property.Stroke | undefined; strokeDasharray?: csstype.Property.StrokeDasharray | undefined; strokeDashoffset?: csstype.Property.StrokeDashoffset | undefined; strokeLinecap?: csstype.Property.StrokeLinecap | undefined; strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined; strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined; strokeOpacity?: csstype.Property.StrokeOpacity | undefined; strokeWidth?: csstype.Property.StrokeWidth | undefined; textAnchor?: csstype.Property.TextAnchor | undefined; vectorEffect?: csstype.Property.VectorEffect | undefined; "accent-color"?: csstype.Property.AccentColor | undefined; "align-content"?: csstype.Property.AlignContent | undefined; "align-items"?: csstype.Property.AlignItems | undefined; "align-self"?: csstype.Property.AlignSelf | undefined; "align-tracks"?: csstype.Property.AlignTracks | undefined; "animation-composition"?: csstype.Property.AnimationComposition | undefined; "animation-delay"?: csstype.Property.AnimationDelay | undefined; "animation-direction"?: csstype.Property.AnimationDirection | undefined; "animation-duration"?: csstype.Property.AnimationDuration | undefined; "animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "animation-name"?: csstype.Property.AnimationName | undefined; "animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "animation-range-end"?: csstype.Property.AnimationRangeEnd | undefined; "animation-range-start"?: csstype.Property.AnimationRangeStart | undefined; "animation-timeline"?: csstype.Property.AnimationTimeline | undefined; "animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "aspect-ratio"?: csstype.Property.AspectRatio | undefined; "backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "background-attachment"?: csstype.Property.BackgroundAttachment | undefined; "background-blend-mode"?: csstype.Property.BackgroundBlendMode | undefined; "background-clip"?: csstype.Property.BackgroundClip | undefined; "background-color"?: csstype.Property.BackgroundColor | undefined; "background-image"?: csstype.Property.BackgroundImage | undefined; "background-origin"?: csstype.Property.BackgroundOrigin | undefined; "background-position-x"?: csstype.Property.BackgroundPositionX | undefined; "background-position-y"?: csstype.Property.BackgroundPositionY | undefined; "background-repeat"?: csstype.Property.BackgroundRepeat | undefined; "background-size"?: csstype.Property.BackgroundSize | undefined; "block-overflow"?: csstype.Property.BlockOverflow | undefined; "block-size"?: csstype.Property.BlockSize | undefined; "border-block-color"?: csstype.Property.BorderBlockColor | undefined; "border-block-end-color"?: csstype.Property.BorderBlockEndColor | undefined; "border-block-end-style"?: csstype.Property.BorderBlockEndStyle | undefined; "border-block-end-width"?: csstype.Property.BorderBlockEndWidth | undefined; "border-block-start-color"?: csstype.Property.BorderBlockStartColor | undefined; "border-block-start-style"?: csstype.Property.BorderBlockStartStyle | undefined; "border-block-start-width"?: csstype.Property.BorderBlockStartWidth | undefined; "border-block-style"?: csstype.Property.BorderBlockStyle | undefined; "border-block-width"?: csstype.Property.BorderBlockWidth | undefined; "border-bottom-color"?: csstype.Property.BorderBottomColor | undefined; "border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "border-bottom-style"?: csstype.Property.BorderBottomStyle | undefined; "border-bottom-width"?: csstype.Property.BorderBottomWidth | undefined; "border-collapse"?: csstype.Property.BorderCollapse | undefined; "border-end-end-radius"?: csstype.Property.BorderEndEndRadius | undefined; "border-end-start-radius"?: csstype.Property.BorderEndStartRadius | undefined; "border-image-outset"?: csstype.Property.BorderImageOutset | undefined; "border-image-repeat"?: csstype.Property.BorderImageRepeat | undefined; "border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "border-image-source"?: csstype.Property.BorderImageSource | undefined; "border-image-width"?: csstype.Property.BorderImageWidth | undefined; "border-inline-color"?: csstype.Property.BorderInlineColor | undefined; "border-inline-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "border-inline-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "border-inline-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "border-inline-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "border-inline-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "border-inline-start-width"?: csstype.Property.BorderInlineStartWidth | undefined; "border-inline-style"?: csstype.Property.BorderInlineStyle | undefined; "border-inline-width"?: csstype.Property.BorderInlineWidth | undefined; "border-left-color"?: csstype.Property.BorderLeftColor | undefined; "border-left-style"?: csstype.Property.BorderLeftStyle | undefined; "border-left-width"?: csstype.Property.BorderLeftWidth | undefined; "border-right-color"?: csstype.Property.BorderRightColor | undefined; "border-right-style"?: csstype.Property.BorderRightStyle | undefined; "border-right-width"?: csstype.Property.BorderRightWidth | undefined; "border-spacing"?: csstype.Property.BorderSpacing | undefined; "border-start-end-radius"?: csstype.Property.BorderStartEndRadius | undefined; "border-start-start-radius"?: csstype.Property.BorderStartStartRadius | undefined; "border-top-color"?: csstype.Property.BorderTopColor | undefined; "border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "border-top-style"?: csstype.Property.BorderTopStyle | undefined; "border-top-width"?: csstype.Property.BorderTopWidth | undefined; "box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "box-shadow"?: csstype.Property.BoxShadow | undefined; "box-sizing"?: csstype.Property.BoxSizing | undefined; "break-after"?: csstype.Property.BreakAfter | undefined; "break-before"?: csstype.Property.BreakBefore | undefined; "break-inside"?: csstype.Property.BreakInside | undefined; "caption-side"?: csstype.Property.CaptionSide | undefined; "caret-color"?: csstype.Property.CaretColor | undefined; "caret-shape"?: csstype.Property.CaretShape | undefined; "clip-path"?: csstype.Property.ClipPath | undefined; "color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "color-scheme"?: csstype.Property.ColorScheme | undefined; "column-count"?: csstype.Property.ColumnCount | undefined; "column-fill"?: csstype.Property.ColumnFill | undefined; "column-gap"?: csstype.Property.ColumnGap | undefined; "column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "column-span"?: csstype.Property.ColumnSpan | undefined; "column-width"?: csstype.Property.ColumnWidth | undefined; "contain-intrinsic-block-size"?: csstype.Property.ContainIntrinsicBlockSize | undefined; "contain-intrinsic-height"?: csstype.Property.ContainIntrinsicHeight | undefined; "contain-intrinsic-inline-size"?: csstype.Property.ContainIntrinsicInlineSize | undefined; "contain-intrinsic-width"?: csstype.Property.ContainIntrinsicWidth | undefined; "container-name"?: csstype.Property.ContainerName | undefined; "container-type"?: csstype.Property.ContainerType | undefined; "content-visibility"?: csstype.Property.ContentVisibility | undefined; "counter-increment"?: csstype.Property.CounterIncrement | undefined; "counter-reset"?: csstype.Property.CounterReset | undefined; "counter-set"?: csstype.Property.CounterSet | undefined; "empty-cells"?: csstype.Property.EmptyCells | undefined; "flex-basis"?: csstype.Property.FlexBasis | undefined; "flex-direction"?: csstype.Property.FlexDirection | undefined; "flex-grow"?: csstype.Property.FlexGrow | undefined; "flex-shrink"?: csstype.Property.FlexShrink | undefined; "flex-wrap"?: csstype.Property.FlexWrap | undefined; "font-family"?: csstype.Property.FontFamily | undefined; "font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "font-kerning"?: csstype.Property.FontKerning | undefined; "font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "font-optical-sizing"?: csstype.Property.FontOpticalSizing | undefined; "font-palette"?: csstype.Property.FontPalette | undefined; "font-size"?: csstype.Property.FontSize | undefined; "font-size-adjust"?: csstype.Property.FontSizeAdjust | undefined; "font-smooth"?: csstype.Property.FontSmooth | undefined; "font-stretch"?: csstype.Property.FontStretch | undefined; "font-style"?: csstype.Property.FontStyle | undefined; "font-synthesis"?: csstype.Property.FontSynthesis | undefined; "font-synthesis-position"?: csstype.Property.FontSynthesisPosition | undefined; "font-synthesis-small-caps"?: csstype.Property.FontSynthesisSmallCaps | undefined; "font-synthesis-style"?: csstype.Property.FontSynthesisStyle | undefined; "font-synthesis-weight"?: csstype.Property.FontSynthesisWeight | undefined; "font-variant"?: csstype.Property.FontVariant | undefined; "font-variant-alternates"?: csstype.Property.FontVariantAlternates | undefined; "font-variant-caps"?: csstype.Property.FontVariantCaps | undefined; "font-variant-east-asian"?: csstype.Property.FontVariantEastAsian | undefined; "font-variant-emoji"?: csstype.Property.FontVariantEmoji | undefined; "font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "font-variant-numeric"?: csstype.Property.FontVariantNumeric | undefined; "font-variant-position"?: csstype.Property.FontVariantPosition | undefined; "font-variation-settings"?: csstype.Property.FontVariationSettings | undefined; "font-weight"?: csstype.Property.FontWeight | undefined; "forced-color-adjust"?: csstype.Property.ForcedColorAdjust | undefined; "grid-auto-columns"?: csstype.Property.GridAutoColumns | undefined; "grid-auto-flow"?: csstype.Property.GridAutoFlow | undefined; "grid-auto-rows"?: csstype.Property.GridAutoRows | undefined; "grid-column-end"?: csstype.Property.GridColumnEnd | undefined; "grid-column-start"?: csstype.Property.GridColumnStart | undefined; "grid-row-end"?: csstype.Property.GridRowEnd | undefined; "grid-row-start"?: csstype.Property.GridRowStart | undefined; "grid-template-areas"?: csstype.Property.GridTemplateAreas | undefined; "grid-template-columns"?: csstype.Property.GridTemplateColumns | undefined; "grid-template-rows"?: csstype.Property.GridTemplateRows | undefined; "hanging-punctuation"?: csstype.Property.HangingPunctuation | undefined; "hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "hyphenate-limit-chars"?: csstype.Property.HyphenateLimitChars | undefined; "image-orientation"?: csstype.Property.ImageOrientation | undefined; "image-rendering"?: csstype.Property.ImageRendering | undefined; "image-resolution"?: csstype.Property.ImageResolution | undefined; "initial-letter"?: csstype.Property.InitialLetter | undefined; "inline-size"?: csstype.Property.InlineSize | undefined; "input-security"?: csstype.Property.InputSecurity | undefined; "inset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "inset-block-start"?: csstype.Property.InsetBlockStart | undefined; "inset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "inset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "justify-content"?: csstype.Property.JustifyContent | undefined; "justify-items"?: csstype.Property.JustifyItems | undefined; "justify-self"?: csstype.Property.JustifySelf | undefined; "justify-tracks"?: csstype.Property.JustifyTracks | undefined; "letter-spacing"?: csstype.Property.LetterSpacing | undefined; "line-break"?: csstype.Property.LineBreak | undefined; "line-height"?: csstype.Property.LineHeight | undefined; "line-height-step"?: csstype.Property.LineHeightStep | undefined; "list-style-image"?: csstype.Property.ListStyleImage | undefined; "list-style-position"?: csstype.Property.ListStylePosition | undefined; "list-style-type"?: csstype.Property.ListStyleType | undefined; "margin-block-end"?: csstype.Property.MarginBlockEnd | undefined; "margin-block-start"?: csstype.Property.MarginBlockStart | undefined; "margin-bottom"?: csstype.Property.MarginBottom | undefined; "margin-inline-end"?: csstype.Property.MarginInlineEnd | undefined; "margin-inline-start"?: csstype.Property.MarginInlineStart | undefined; "margin-left"?: csstype.Property.MarginLeft | undefined; "margin-right"?: csstype.Property.MarginRight | undefined; "margin-top"?: csstype.Property.MarginTop | undefined; "margin-trim"?: csstype.Property.MarginTrim | undefined; "mask-border-mode"?: csstype.Property.MaskBorderMode | undefined; "mask-border-outset"?: csstype.Property.MaskBorderOutset | undefined; "mask-border-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "mask-border-slice"?: csstype.Property.MaskBorderSlice | undefined; "mask-border-source"?: csstype.Property.MaskBorderSource | undefined; "mask-border-width"?: csstype.Property.MaskBorderWidth | undefined; "mask-clip"?: csstype.Property.MaskClip | undefined; "mask-composite"?: csstype.Property.MaskComposite | undefined; "mask-image"?: csstype.Property.MaskImage | undefined; "mask-mode"?: csstype.Property.MaskMode | undefined; "mask-origin"?: csstype.Property.MaskOrigin | undefined; "mask-position"?: csstype.Property.MaskPosition | undefined; "mask-repeat"?: csstype.Property.MaskRepeat | undefined; "mask-size"?: csstype.Property.MaskSize | undefined; "mask-type"?: csstype.Property.MaskType | undefined; "masonry-auto-flow"?: csstype.Property.MasonryAutoFlow | undefined; "math-depth"?: csstype.Property.MathDepth | undefined; "math-shift"?: csstype.Property.MathShift | undefined; "math-style"?: csstype.Property.MathStyle | undefined; "max-block-size"?: csstype.Property.MaxBlockSize | undefined; "max-height"?: csstype.Property.MaxHeight | undefined; "max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "max-lines"?: csstype.Property.MaxLines | undefined; "max-width"?: csstype.Property.MaxWidth | undefined; "min-block-size"?: csstype.Property.MinBlockSize | undefined; "min-height"?: csstype.Property.MinHeight | undefined; "min-inline-size"?: csstype.Property.MinInlineSize | undefined; "min-width"?: csstype.Property.MinWidth | undefined; "mix-blend-mode"?: csstype.Property.MixBlendMode | undefined; "motion-distance"?: csstype.Property.OffsetDistance | undefined; "motion-path"?: csstype.Property.OffsetPath | undefined; "motion-rotation"?: csstype.Property.OffsetRotate | undefined; "object-fit"?: csstype.Property.ObjectFit | undefined; "object-position"?: csstype.Property.ObjectPosition | undefined; "offset-anchor"?: csstype.Property.OffsetAnchor | undefined; "offset-distance"?: csstype.Property.OffsetDistance | undefined; "offset-path"?: csstype.Property.OffsetPath | undefined; "offset-position"?: csstype.Property.OffsetPosition | undefined; "offset-rotate"?: csstype.Property.OffsetRotate | undefined; "offset-rotation"?: csstype.Property.OffsetRotate | undefined; "outline-color"?: csstype.Property.OutlineColor | undefined; "outline-offset"?: csstype.Property.OutlineOffset | undefined; "outline-style"?: csstype.Property.OutlineStyle | undefined; "outline-width"?: csstype.Property.OutlineWidth | undefined; "overflow-anchor"?: csstype.Property.OverflowAnchor | undefined; "overflow-block"?: csstype.Property.OverflowBlock | undefined; "overflow-clip-box"?: csstype.Property.OverflowClipBox | undefined; "overflow-clip-margin"?: csstype.Property.OverflowClipMargin | undefined; "overflow-inline"?: csstype.Property.OverflowInline | undefined; "overflow-wrap"?: csstype.Property.OverflowWrap | undefined; "overflow-x"?: csstype.Property.OverflowX | undefined; "overflow-y"?: csstype.Property.OverflowY | undefined; "overscroll-behavior-block"?: csstype.Property.OverscrollBehaviorBlock | undefined; "overscroll-behavior-inline"?: csstype.Property.OverscrollBehaviorInline | undefined; "overscroll-behavior-x"?: csstype.Property.OverscrollBehaviorX | undefined; "overscroll-behavior-y"?: csstype.Property.OverscrollBehaviorY | undefined; "padding-block-end"?: csstype.Property.PaddingBlockEnd | undefined; "padding-block-start"?: csstype.Property.PaddingBlockStart | undefined; "padding-bottom"?: csstype.Property.PaddingBottom | undefined; "padding-inline-end"?: csstype.Property.PaddingInlineEnd | undefined; "padding-inline-start"?: csstype.Property.PaddingInlineStart | undefined; "padding-left"?: csstype.Property.PaddingLeft | undefined; "padding-right"?: csstype.Property.PaddingRight | undefined; "padding-top"?: csstype.Property.PaddingTop | undefined; "page-break-after"?: csstype.Property.PageBreakAfter | undefined; "page-break-before"?: csstype.Property.PageBreakBefore | undefined; "page-break-inside"?: csstype.Property.PageBreakInside | undefined; "paint-order"?: csstype.Property.PaintOrder | undefined; "perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "pointer-events"?: csstype.Property.PointerEvents | undefined; "print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "row-gap"?: csstype.Property.RowGap | undefined; "ruby-align"?: csstype.Property.RubyAlign | undefined; "ruby-merge"?: csstype.Property.RubyMerge | undefined; "ruby-position"?: csstype.Property.RubyPosition | undefined; "scroll-behavior"?: csstype.Property.ScrollBehavior | undefined; "scroll-margin-block-end"?: csstype.Property.ScrollMarginBlockEnd | undefined; "scroll-margin-block-start"?: csstype.Property.ScrollMarginBlockStart | undefined; "scroll-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-margin-inline-end"?: csstype.Property.ScrollMarginInlineEnd | undefined; "scroll-margin-inline-start"?: csstype.Property.ScrollMarginInlineStart | undefined; "scroll-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-padding-block-end"?: csstype.Property.ScrollPaddingBlockEnd | undefined; "scroll-padding-block-start"?: csstype.Property.ScrollPaddingBlockStart | undefined; "scroll-padding-bottom"?: csstype.Property.ScrollPaddingBottom | undefined; "scroll-padding-inline-end"?: csstype.Property.ScrollPaddingInlineEnd | undefined; "scroll-padding-inline-start"?: csstype.Property.ScrollPaddingInlineStart | undefined; "scroll-padding-left"?: csstype.Property.ScrollPaddingLeft | undefined; "scroll-padding-right"?: csstype.Property.ScrollPaddingRight | undefined; "scroll-padding-top"?: csstype.Property.ScrollPaddingTop | undefined; "scroll-snap-align"?: csstype.Property.ScrollSnapAlign | undefined; "scroll-snap-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-snap-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-snap-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-snap-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-snap-stop"?: csstype.Property.ScrollSnapStop | undefined; "scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "scroll-timeline-axis"?: csstype.Property.ScrollTimelineAxis | undefined; "scroll-timeline-name"?: csstype.Property.ScrollTimelineName | undefined; "scrollbar-color"?: csstype.Property.ScrollbarColor | undefined; "scrollbar-gutter"?: csstype.Property.ScrollbarGutter | undefined; "scrollbar-width"?: csstype.Property.ScrollbarWidth | undefined; "shape-image-threshold"?: csstype.Property.ShapeImageThreshold | undefined; "shape-margin"?: csstype.Property.ShapeMargin | undefined; "shape-outside"?: csstype.Property.ShapeOutside | undefined; "tab-size"?: csstype.Property.TabSize | undefined; "table-layout"?: csstype.Property.TableLayout | undefined; "text-align"?: csstype.Property.TextAlign | undefined; "text-align-last"?: csstype.Property.TextAlignLast | undefined; "text-combine-upright"?: csstype.Property.TextCombineUpright | undefined; "text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "text-decoration-skip-ink"?: csstype.Property.TextDecorationSkipInk | undefined; "text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "text-decoration-thickness"?: csstype.Property.TextDecorationThickness | undefined; "text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "text-indent"?: csstype.Property.TextIndent | undefined; "text-justify"?: csstype.Property.TextJustify | undefined; "text-orientation"?: csstype.Property.TextOrientation | undefined; "text-overflow"?: csstype.Property.TextOverflow | undefined; "text-rendering"?: csstype.Property.TextRendering | undefined; "text-shadow"?: csstype.Property.TextShadow | undefined; "text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "text-transform"?: csstype.Property.TextTransform | undefined; "text-underline-offset"?: csstype.Property.TextUnderlineOffset | undefined; "text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "text-wrap"?: csstype.Property.TextWrap | undefined; "timeline-scope"?: csstype.Property.TimelineScope | undefined; "touch-action"?: csstype.Property.TouchAction | undefined; "transform-box"?: csstype.Property.TransformBox | undefined; "transform-origin"?: csstype.Property.TransformOrigin | undefined; "transform-style"?: csstype.Property.TransformStyle | undefined; "transition-behavior"?: csstype.Property.TransitionBehavior | undefined; "transition-delay"?: csstype.Property.TransitionDelay | undefined; "transition-duration"?: csstype.Property.TransitionDuration | undefined; "transition-property"?: csstype.Property.TransitionProperty | undefined; "transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "unicode-bidi"?: csstype.Property.UnicodeBidi | undefined; "user-select"?: csstype.Property.UserSelect | undefined; "vertical-align"?: csstype.Property.VerticalAlign | undefined; "view-timeline-axis"?: csstype.Property.ViewTimelineAxis | undefined; "view-timeline-inset"?: csstype.Property.ViewTimelineInset | undefined; "view-timeline-name"?: csstype.Property.ViewTimelineName | undefined; "view-transition-name"?: csstype.Property.ViewTransitionName | undefined; "white-space"?: csstype.Property.WhiteSpace | undefined; "white-space-collapse"?: csstype.Property.WhiteSpaceCollapse | undefined; "white-space-trim"?: csstype.Property.WhiteSpaceTrim | undefined; "will-change"?: csstype.Property.WillChange | undefined; "word-break"?: csstype.Property.WordBreak | undefined; "word-spacing"?: csstype.Property.WordSpacing | undefined; "word-wrap"?: csstype.Property.WordWrap | undefined; "writing-mode"?: csstype.Property.WritingMode | undefined; "z-index"?: csstype.Property.ZIndex | undefined; "animation-range"?: csstype.Property.AnimationRange | undefined; "background-position"?: csstype.Property.BackgroundPosition | undefined; "border-block"?: csstype.Property.BorderBlock | undefined; "border-block-end"?: csstype.Property.BorderBlockEnd | undefined; "border-block-start"?: csstype.Property.BorderBlockStart | undefined; "border-bottom"?: csstype.Property.BorderBottom | undefined; "border-color"?: csstype.Property.BorderColor | undefined; "border-image"?: csstype.Property.BorderImage | undefined; "border-inline"?: csstype.Property.BorderInline | undefined; "border-inline-end"?: csstype.Property.BorderInlineEnd | undefined; "border-inline-start"?: csstype.Property.BorderInlineStart | undefined; "border-left"?: csstype.Property.BorderLeft | undefined; "border-radius"?: csstype.Property.BorderRadius | undefined; "border-right"?: csstype.Property.BorderRight | undefined; "border-style"?: csstype.Property.BorderStyle | undefined; "border-top"?: csstype.Property.BorderTop | undefined; "border-width"?: csstype.Property.BorderWidth | undefined; "column-rule"?: csstype.Property.ColumnRule | undefined; "contain-intrinsic-size"?: csstype.Property.ContainIntrinsicSize | undefined; "flex-flow"?: csstype.Property.FlexFlow | undefined; "grid-area"?: csstype.Property.GridArea | undefined; "grid-column"?: csstype.Property.GridColumn | undefined; "grid-row"?: csstype.Property.GridRow | undefined; "grid-template"?: csstype.Property.GridTemplate | undefined; "inset-block"?: csstype.Property.InsetBlock | undefined; "inset-inline"?: csstype.Property.InsetInline | undefined; "line-clamp"?: csstype.Property.LineClamp | undefined; "list-style"?: csstype.Property.ListStyle | undefined; "margin-block"?: csstype.Property.MarginBlock | undefined; "margin-inline"?: csstype.Property.MarginInline | undefined; "mask-border"?: csstype.Property.MaskBorder | undefined; "overscroll-behavior"?: csstype.Property.OverscrollBehavior | undefined; "padding-block"?: csstype.Property.PaddingBlock | undefined; "padding-inline"?: csstype.Property.PaddingInline | undefined; "place-content"?: csstype.Property.PlaceContent | undefined; "place-items"?: csstype.Property.PlaceItems | undefined; "place-self"?: csstype.Property.PlaceSelf | undefined; "scroll-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-margin-block"?: csstype.Property.ScrollMarginBlock | undefined; "scroll-margin-inline"?: csstype.Property.ScrollMarginInline | undefined; "scroll-padding"?: csstype.Property.ScrollPadding | undefined; "scroll-padding-block"?: csstype.Property.ScrollPaddingBlock | undefined; "scroll-padding-inline"?: csstype.Property.ScrollPaddingInline | undefined; "scroll-snap-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-timeline"?: csstype.Property.ScrollTimeline | undefined; "text-decoration"?: csstype.Property.TextDecoration | undefined; "text-emphasis"?: csstype.Property.TextEmphasis | undefined; "view-timeline"?: csstype.Property.ViewTimeline | undefined; "-moz-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-moz-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-moz-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-moz-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-moz-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-moz-animation-name"?: csstype.Property.AnimationName | undefined; "-moz-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-moz-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-moz-appearance"?: csstype.Property.MozAppearance | undefined; "-moz-binding"?: csstype.Property.MozBinding | undefined; "-moz-border-bottom-colors"?: csstype.Property.MozBorderBottomColors | undefined; "-moz-border-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "-moz-border-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "-moz-border-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "-moz-border-left-colors"?: csstype.Property.MozBorderLeftColors | undefined; "-moz-border-right-colors"?: csstype.Property.MozBorderRightColors | undefined; "-moz-border-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "-moz-border-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "-moz-border-top-colors"?: csstype.Property.MozBorderTopColors | undefined; "-moz-box-sizing"?: csstype.Property.BoxSizing | undefined; "-moz-column-count"?: csstype.Property.ColumnCount | undefined; "-moz-column-fill"?: csstype.Property.ColumnFill | undefined; "-moz-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-moz-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-moz-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-moz-column-width"?: csstype.Property.ColumnWidth | undefined; "-moz-context-properties"?: csstype.Property.MozContextProperties | undefined; "-moz-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-moz-font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "-moz-hyphens"?: csstype.Property.Hyphens | undefined; "-moz-image-region"?: csstype.Property.MozImageRegion | undefined; "-moz-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-moz-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-moz-orient"?: csstype.Property.MozOrient | undefined; "-moz-osx-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-moz-outline-radius-bottomleft"?: csstype.Property.MozOutlineRadiusBottomleft | undefined; "-moz-outline-radius-bottomright"?: csstype.Property.MozOutlineRadiusBottomright | undefined; "-moz-outline-radius-topleft"?: csstype.Property.MozOutlineRadiusTopleft | undefined; "-moz-outline-radius-topright"?: csstype.Property.MozOutlineRadiusTopright | undefined; "-moz-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-moz-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-moz-stack-sizing"?: csstype.Property.MozStackSizing | undefined; "-moz-tab-size"?: csstype.Property.TabSize | undefined; "-moz-text-blink"?: csstype.Property.MozTextBlink | undefined; "-moz-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-moz-user-focus"?: csstype.Property.MozUserFocus | undefined; "-moz-user-modify"?: csstype.Property.MozUserModify | undefined; "-moz-user-select"?: csstype.Property.UserSelect | undefined; "-moz-window-dragging"?: csstype.Property.MozWindowDragging | undefined; "-moz-window-shadow"?: csstype.Property.MozWindowShadow | undefined; "-ms-accelerator"?: csstype.Property.MsAccelerator | undefined; "-ms-block-progression"?: csstype.Property.MsBlockProgression | undefined; "-ms-content-zoom-chaining"?: csstype.Property.MsContentZoomChaining | undefined; "-ms-content-zoom-limit-max"?: csstype.Property.MsContentZoomLimitMax | undefined; "-ms-content-zoom-limit-min"?: csstype.Property.MsContentZoomLimitMin | undefined; "-ms-content-zoom-snap-points"?: csstype.Property.MsContentZoomSnapPoints | undefined; "-ms-content-zoom-snap-type"?: csstype.Property.MsContentZoomSnapType | undefined; "-ms-content-zooming"?: csstype.Property.MsContentZooming | undefined; "-ms-filter"?: csstype.Property.MsFilter | undefined; "-ms-flex-direction"?: csstype.Property.FlexDirection | undefined; "-ms-flex-positive"?: csstype.Property.FlexGrow | undefined; "-ms-flow-from"?: csstype.Property.MsFlowFrom | undefined; "-ms-flow-into"?: csstype.Property.MsFlowInto | undefined; "-ms-grid-columns"?: csstype.Property.MsGridColumns | undefined; "-ms-grid-rows"?: csstype.Property.MsGridRows | undefined; "-ms-high-contrast-adjust"?: csstype.Property.MsHighContrastAdjust | undefined; "-ms-hyphenate-limit-chars"?: csstype.Property.MsHyphenateLimitChars | undefined; "-ms-hyphenate-limit-lines"?: csstype.Property.MsHyphenateLimitLines | undefined; "-ms-hyphenate-limit-zone"?: csstype.Property.MsHyphenateLimitZone | undefined; "-ms-hyphens"?: csstype.Property.Hyphens | undefined; "-ms-ime-align"?: csstype.Property.MsImeAlign | undefined; "-ms-line-break"?: csstype.Property.LineBreak | undefined; "-ms-order"?: csstype.Property.Order | undefined; "-ms-overflow-style"?: csstype.Property.MsOverflowStyle | undefined; "-ms-overflow-x"?: csstype.Property.OverflowX | undefined; "-ms-overflow-y"?: csstype.Property.OverflowY | undefined; "-ms-scroll-chaining"?: csstype.Property.MsScrollChaining | undefined; "-ms-scroll-limit-x-max"?: csstype.Property.MsScrollLimitXMax | undefined; "-ms-scroll-limit-x-min"?: csstype.Property.MsScrollLimitXMin | undefined; "-ms-scroll-limit-y-max"?: csstype.Property.MsScrollLimitYMax | undefined; "-ms-scroll-limit-y-min"?: csstype.Property.MsScrollLimitYMin | undefined; "-ms-scroll-rails"?: csstype.Property.MsScrollRails | undefined; "-ms-scroll-snap-points-x"?: csstype.Property.MsScrollSnapPointsX | undefined; "-ms-scroll-snap-points-y"?: csstype.Property.MsScrollSnapPointsY | undefined; "-ms-scroll-snap-type"?: csstype.Property.MsScrollSnapType | undefined; "-ms-scroll-translation"?: csstype.Property.MsScrollTranslation | undefined; "-ms-scrollbar-3dlight-color"?: csstype.Property.MsScrollbar3dlightColor | undefined; "-ms-scrollbar-arrow-color"?: csstype.Property.MsScrollbarArrowColor | undefined; "-ms-scrollbar-base-color"?: csstype.Property.MsScrollbarBaseColor | undefined; "-ms-scrollbar-darkshadow-color"?: csstype.Property.MsScrollbarDarkshadowColor | undefined; "-ms-scrollbar-face-color"?: csstype.Property.MsScrollbarFaceColor | undefined; "-ms-scrollbar-highlight-color"?: csstype.Property.MsScrollbarHighlightColor | undefined; "-ms-scrollbar-shadow-color"?: csstype.Property.MsScrollbarShadowColor | undefined; "-ms-scrollbar-track-color"?: csstype.Property.MsScrollbarTrackColor | undefined; "-ms-text-autospace"?: csstype.Property.MsTextAutospace | undefined; "-ms-text-combine-horizontal"?: csstype.Property.TextCombineUpright | undefined; "-ms-text-overflow"?: csstype.Property.TextOverflow | undefined; "-ms-touch-action"?: csstype.Property.TouchAction | undefined; "-ms-touch-select"?: csstype.Property.MsTouchSelect | undefined; "-ms-transform"?: csstype.Property.Transform | undefined; "-ms-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-ms-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-ms-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-ms-transition-property"?: csstype.Property.TransitionProperty | undefined; "-ms-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-ms-user-select"?: csstype.Property.MsUserSelect | undefined; "-ms-word-break"?: csstype.Property.WordBreak | undefined; "-ms-wrap-flow"?: csstype.Property.MsWrapFlow | undefined; "-ms-wrap-margin"?: csstype.Property.MsWrapMargin | undefined; "-ms-wrap-through"?: csstype.Property.MsWrapThrough | undefined; "-ms-writing-mode"?: csstype.Property.WritingMode | undefined; "-webkit-align-content"?: csstype.Property.AlignContent | undefined; "-webkit-align-items"?: csstype.Property.AlignItems | undefined; "-webkit-align-self"?: csstype.Property.AlignSelf | undefined; "-webkit-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-webkit-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-webkit-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-webkit-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-webkit-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-webkit-animation-name"?: csstype.Property.AnimationName | undefined; "-webkit-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-webkit-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-webkit-appearance"?: csstype.Property.WebkitAppearance | undefined; "-webkit-backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "-webkit-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-webkit-background-clip"?: csstype.Property.BackgroundClip | undefined; "-webkit-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-webkit-background-size"?: csstype.Property.BackgroundSize | undefined; "-webkit-border-before-color"?: csstype.Property.WebkitBorderBeforeColor | undefined; "-webkit-border-before-style"?: csstype.Property.WebkitBorderBeforeStyle | undefined; "-webkit-border-before-width"?: csstype.Property.WebkitBorderBeforeWidth | undefined; "-webkit-border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "-webkit-border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "-webkit-border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "-webkit-border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "-webkit-border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "-webkit-box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "-webkit-box-reflect"?: csstype.Property.WebkitBoxReflect | undefined; "-webkit-box-shadow"?: csstype.Property.BoxShadow | undefined; "-webkit-box-sizing"?: csstype.Property.BoxSizing | undefined; "-webkit-clip-path"?: csstype.Property.ClipPath | undefined; "-webkit-column-count"?: csstype.Property.ColumnCount | undefined; "-webkit-column-fill"?: csstype.Property.ColumnFill | undefined; "-webkit-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-webkit-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-webkit-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-webkit-column-span"?: csstype.Property.ColumnSpan | undefined; "-webkit-column-width"?: csstype.Property.ColumnWidth | undefined; "-webkit-filter"?: csstype.Property.Filter | undefined; "-webkit-flex-basis"?: csstype.Property.FlexBasis | undefined; "-webkit-flex-direction"?: csstype.Property.FlexDirection | undefined; "-webkit-flex-grow"?: csstype.Property.FlexGrow | undefined; "-webkit-flex-shrink"?: csstype.Property.FlexShrink | undefined; "-webkit-flex-wrap"?: csstype.Property.FlexWrap | undefined; "-webkit-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-webkit-font-kerning"?: csstype.Property.FontKerning | undefined; "-webkit-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-webkit-font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "-webkit-hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "-webkit-hyphens"?: csstype.Property.Hyphens | undefined; "-webkit-initial-letter"?: csstype.Property.InitialLetter | undefined; "-webkit-justify-content"?: csstype.Property.JustifyContent | undefined; "-webkit-line-break"?: csstype.Property.LineBreak | undefined; "-webkit-line-clamp"?: csstype.Property.WebkitLineClamp | undefined; "-webkit-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-webkit-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-webkit-mask-attachment"?: csstype.Property.WebkitMaskAttachment | undefined; "-webkit-mask-box-image-outset"?: csstype.Property.MaskBorderOutset | undefined; "-webkit-mask-box-image-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "-webkit-mask-box-image-slice"?: csstype.Property.MaskBorderSlice | undefined; "-webkit-mask-box-image-source"?: csstype.Property.MaskBorderSource | undefined; "-webkit-mask-box-image-width"?: csstype.Property.MaskBorderWidth | undefined; "-webkit-mask-clip"?: csstype.Property.WebkitMaskClip | undefined; "-webkit-mask-composite"?: csstype.Property.WebkitMaskComposite | undefined; "-webkit-mask-image"?: csstype.Property.WebkitMaskImage | undefined; "-webkit-mask-origin"?: csstype.Property.WebkitMaskOrigin | undefined; "-webkit-mask-position"?: csstype.Property.WebkitMaskPosition | undefined; "-webkit-mask-position-x"?: csstype.Property.WebkitMaskPositionX | undefined; "-webkit-mask-position-y"?: csstype.Property.WebkitMaskPositionY | undefined; "-webkit-mask-repeat"?: csstype.Property.WebkitMaskRepeat | undefined; "-webkit-mask-repeat-x"?: csstype.Property.WebkitMaskRepeatX | undefined; "-webkit-mask-repeat-y"?: csstype.Property.WebkitMaskRepeatY | undefined; "-webkit-mask-size"?: csstype.Property.WebkitMaskSize | undefined; "-webkit-max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "-webkit-order"?: csstype.Property.Order | undefined; "-webkit-overflow-scrolling"?: csstype.Property.WebkitOverflowScrolling | undefined; "-webkit-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-webkit-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-webkit-perspective"?: csstype.Property.Perspective | undefined; "-webkit-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-webkit-print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "-webkit-ruby-position"?: csstype.Property.RubyPosition | undefined; "-webkit-scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "-webkit-shape-margin"?: csstype.Property.ShapeMargin | undefined; "-webkit-tap-highlight-color"?: csstype.Property.WebkitTapHighlightColor | undefined; "-webkit-text-combine"?: csstype.Property.TextCombineUpright | undefined; "-webkit-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-webkit-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-webkit-text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "-webkit-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-webkit-text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "-webkit-text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "-webkit-text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "-webkit-text-fill-color"?: csstype.Property.WebkitTextFillColor | undefined; "-webkit-text-orientation"?: csstype.Property.TextOrientation | undefined; "-webkit-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-webkit-text-stroke-color"?: csstype.Property.WebkitTextStrokeColor | undefined; "-webkit-text-stroke-width"?: csstype.Property.WebkitTextStrokeWidth | undefined; "-webkit-text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "-webkit-touch-callout"?: csstype.Property.WebkitTouchCallout | undefined; "-webkit-transform"?: csstype.Property.Transform | undefined; "-webkit-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-webkit-transform-style"?: csstype.Property.TransformStyle | undefined; "-webkit-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-webkit-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-webkit-transition-property"?: csstype.Property.TransitionProperty | undefined; "-webkit-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-user-modify"?: csstype.Property.WebkitUserModify | undefined; "-webkit-user-select"?: csstype.Property.UserSelect | undefined; "-webkit-writing-mode"?: csstype.Property.WritingMode | undefined; "-moz-animation"?: csstype.Property.Animation | undefined; "-moz-border-image"?: csstype.Property.BorderImage | undefined; "-moz-column-rule"?: csstype.Property.ColumnRule | undefined; "-moz-columns"?: csstype.Property.Columns | undefined; "-moz-outline-radius"?: csstype.Property.MozOutlineRadius | undefined; "-ms-content-zoom-limit"?: csstype.Property.MsContentZoomLimit | undefined; "-ms-content-zoom-snap"?: csstype.Property.MsContentZoomSnap | undefined; "-ms-flex"?: csstype.Property.Flex | undefined; "-ms-scroll-limit"?: csstype.Property.MsScrollLimit | undefined; "-ms-scroll-snap-x"?: csstype.Property.MsScrollSnapX | undefined; "-ms-scroll-snap-y"?: csstype.Property.MsScrollSnapY | undefined; "-ms-transition"?: csstype.Property.Transition | undefined; "-webkit-animation"?: csstype.Property.Animation | undefined; "-webkit-border-before"?: csstype.Property.WebkitBorderBefore | undefined; "-webkit-border-image"?: csstype.Property.BorderImage | undefined; "-webkit-border-radius"?: csstype.Property.BorderRadius | undefined; "-webkit-column-rule"?: csstype.Property.ColumnRule | undefined; "-webkit-columns"?: csstype.Property.Columns | undefined; "-webkit-flex"?: csstype.Property.Flex | undefined; "-webkit-flex-flow"?: csstype.Property.FlexFlow | undefined; "-webkit-mask"?: csstype.Property.WebkitMask | undefined; "-webkit-mask-box-image"?: csstype.Property.MaskBorder | undefined; "-webkit-text-emphasis"?: csstype.Property.TextEmphasis | undefined; "-webkit-text-stroke"?: csstype.Property.WebkitTextStroke | undefined; "-webkit-transition"?: csstype.Property.Transition | undefined; "box-align"?: csstype.Property.BoxAlign | undefined; "box-direction"?: csstype.Property.BoxDirection | undefined; "box-flex"?: csstype.Property.BoxFlex | undefined; "box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "box-lines"?: csstype.Property.BoxLines | undefined; "box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "box-orient"?: csstype.Property.BoxOrient | undefined; "box-pack"?: csstype.Property.BoxPack | undefined; "grid-column-gap"?: csstype.Property.GridColumnGap | undefined; "grid-gap"?: csstype.Property.GridGap | undefined; "grid-row-gap"?: csstype.Property.GridRowGap | undefined; "ime-mode"?: csstype.Property.ImeMode | undefined; "offset-block"?: csstype.Property.InsetBlock | undefined; "offset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "offset-block-start"?: csstype.Property.InsetBlockStart | undefined; "offset-inline"?: csstype.Property.InsetInline | undefined; "offset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "offset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "scroll-snap-coordinate"?: csstype.Property.ScrollSnapCoordinate | undefined; "scroll-snap-destination"?: csstype.Property.ScrollSnapDestination | undefined; "scroll-snap-points-x"?: csstype.Property.ScrollSnapPointsX | undefined; "scroll-snap-points-y"?: csstype.Property.ScrollSnapPointsY | undefined; "scroll-snap-type-x"?: csstype.Property.ScrollSnapTypeX | undefined; "scroll-snap-type-y"?: csstype.Property.ScrollSnapTypeY | undefined; "-khtml-box-align"?: csstype.Property.BoxAlign | undefined; "-khtml-box-direction"?: csstype.Property.BoxDirection | undefined; "-khtml-box-flex"?: csstype.Property.BoxFlex | undefined; "-khtml-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-khtml-box-lines"?: csstype.Property.BoxLines | undefined; "-khtml-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-khtml-box-orient"?: csstype.Property.BoxOrient | undefined; "-khtml-box-pack"?: csstype.Property.BoxPack | undefined; "-khtml-line-break"?: csstype.Property.LineBreak | undefined; "-khtml-opacity"?: csstype.Property.Opacity | undefined; "-khtml-user-select"?: csstype.Property.UserSelect | undefined; "-moz-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-moz-background-clip"?: csstype.Property.BackgroundClip | undefined; "-moz-background-inline-policy"?: csstype.Property.BoxDecorationBreak | undefined; "-moz-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-moz-background-size"?: csstype.Property.BackgroundSize | undefined; "-moz-border-radius"?: csstype.Property.BorderRadius | undefined; "-moz-border-radius-bottomleft"?: csstype.Property.BorderBottomLeftRadius | undefined; "-moz-border-radius-bottomright"?: csstype.Property.BorderBottomRightRadius | undefined; "-moz-border-radius-topleft"?: csstype.Property.BorderTopLeftRadius | undefined; "-moz-border-radius-topright"?: csstype.Property.BorderTopRightRadius | undefined; "-moz-box-align"?: csstype.Property.BoxAlign | undefined; "-moz-box-direction"?: csstype.Property.BoxDirection | undefined; "-moz-box-flex"?: csstype.Property.BoxFlex | undefined; "-moz-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-moz-box-orient"?: csstype.Property.BoxOrient | undefined; "-moz-box-pack"?: csstype.Property.BoxPack | undefined; "-moz-box-shadow"?: csstype.Property.BoxShadow | undefined; "-moz-float-edge"?: csstype.Property.MozFloatEdge | undefined; "-moz-force-broken-image-icon"?: csstype.Property.MozForceBrokenImageIcon | undefined; "-moz-opacity"?: csstype.Property.Opacity | undefined; "-moz-outline"?: csstype.Property.Outline | undefined; "-moz-outline-color"?: csstype.Property.OutlineColor | undefined; "-moz-outline-style"?: csstype.Property.OutlineStyle | undefined; "-moz-outline-width"?: csstype.Property.OutlineWidth | undefined; "-moz-perspective"?: csstype.Property.Perspective | undefined; "-moz-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-moz-text-align-last"?: csstype.Property.TextAlignLast | undefined; "-moz-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-moz-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-moz-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-moz-transform"?: csstype.Property.Transform | undefined; "-moz-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-moz-transform-style"?: csstype.Property.TransformStyle | undefined; "-moz-transition"?: csstype.Property.Transition | undefined; "-moz-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-moz-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-moz-transition-property"?: csstype.Property.TransitionProperty | undefined; "-moz-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-moz-user-input"?: csstype.Property.MozUserInput | undefined; "-ms-ime-mode"?: csstype.Property.ImeMode | undefined; "-o-animation"?: csstype.Property.Animation | undefined; "-o-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-o-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-o-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-o-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-o-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-o-animation-name"?: csstype.Property.AnimationName | undefined; "-o-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-o-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-o-background-size"?: csstype.Property.BackgroundSize | undefined; "-o-border-image"?: csstype.Property.BorderImage | undefined; "-o-object-fit"?: csstype.Property.ObjectFit | undefined; "-o-object-position"?: csstype.Property.ObjectPosition | undefined; "-o-tab-size"?: csstype.Property.TabSize | undefined; "-o-text-overflow"?: csstype.Property.TextOverflow | undefined; "-o-transform"?: csstype.Property.Transform | undefined; "-o-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-o-transition"?: csstype.Property.Transition | undefined; "-o-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-o-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-o-transition-property"?: csstype.Property.TransitionProperty | undefined; "-o-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-box-align"?: csstype.Property.BoxAlign | undefined; "-webkit-box-direction"?: csstype.Property.BoxDirection | undefined; "-webkit-box-flex"?: csstype.Property.BoxFlex | undefined; "-webkit-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-webkit-box-lines"?: csstype.Property.BoxLines | undefined; "-webkit-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-webkit-box-orient"?: csstype.Property.BoxOrient | undefined; "-webkit-box-pack"?: csstype.Property.BoxPack | undefined; "alignment-baseline"?: csstype.Property.AlignmentBaseline | undefined; "baseline-shift"?: csstype.Property.BaselineShift | undefined; "clip-rule"?: csstype.Property.ClipRule | undefined; "color-interpolation"?: csstype.Property.ColorInterpolation | undefined; "color-rendering"?: csstype.Property.ColorRendering | undefined; "dominant-baseline"?: csstype.Property.DominantBaseline | undefined; "fill-opacity"?: csstype.Property.FillOpacity | undefined; "fill-rule"?: csstype.Property.FillRule | undefined; "flood-color"?: csstype.Property.FloodColor | undefined; "flood-opacity"?: csstype.Property.FloodOpacity | undefined; "glyph-orientation-vertical"?: csstype.Property.GlyphOrientationVertical | undefined; "lighting-color"?: csstype.Property.LightingColor | undefined; "marker-end"?: csstype.Property.MarkerEnd | undefined; "marker-mid"?: csstype.Property.MarkerMid | undefined; "marker-start"?: csstype.Property.MarkerStart | undefined; "shape-rendering"?: csstype.Property.ShapeRendering | undefined; "stop-color"?: csstype.Property.StopColor | undefined; "stop-opacity"?: csstype.Property.StopOpacity | undefined; "stroke-dasharray"?: csstype.Property.StrokeDasharray | undefined; "stroke-dashoffset"?: csstype.Property.StrokeDashoffset | undefined; "stroke-linecap"?: csstype.Property.StrokeLinecap | undefined; "stroke-linejoin"?: csstype.Property.StrokeLinejoin | undefined; "stroke-miterlimit"?: csstype.Property.StrokeMiterlimit | undefined; "stroke-opacity"?: csstype.Property.StrokeOpacity | undefined; "stroke-width"?: csstype.Property.StrokeWidth | undefined; "text-anchor"?: csstype.Property.TextAnchor | undefined; "vector-effect"?: csstype.Property.VectorEffect | undefined; }; }; /** * A Composable giving access to a TransformProperties object, and binding the generated transform string to a target. * * @param target */ declare function useElementTransform(target: MaybeRef, onInit?: (initData: Partial) => void): { transform: { x?: TransformValue | TransformValue[] | undefined; y?: TransformValue | TransformValue[] | undefined; z?: TransformValue | TransformValue[] | undefined; translateX?: TransformValue | TransformValue[] | undefined; translateY?: TransformValue | TransformValue[] | undefined; translateZ?: TransformValue | TransformValue[] | undefined; rotate?: TransformValue | TransformValue[] | undefined; rotateX?: TransformValue | TransformValue[] | undefined; rotateY?: TransformValue | TransformValue[] | undefined; rotateZ?: TransformValue | TransformValue[] | undefined; scale?: TransformValue | TransformValue[] | undefined; scaleX?: TransformValue | TransformValue[] | undefined; scaleY?: TransformValue | TransformValue[] | undefined; scaleZ?: TransformValue | TransformValue[] | undefined; skew?: TransformValue | TransformValue[] | undefined; skewX?: TransformValue | TransformValue[] | undefined; skewY?: TransformValue | TransformValue[] | undefined; originX?: TransformValue | TransformValue[] | undefined; originY?: TransformValue | TransformValue[] | undefined; originZ?: TransformValue | TransformValue[] | undefined; perspective?: TransformValue | TransformValue[] | undefined; transformPerspective?: TransformValue | TransformValue[] | undefined; }; }; /** * A Vue Composable that put your components in motion. * * @docs https://motion.vueuse.js.org * * @param target * @param variants * @param options */ declare function useMotion>(target: MaybeRef, variants?: MaybeRef, options?: UseMotionOptions): MotionInstance; /** * A Composable handling motion controls, pushing resolved variant to useMotionTransitions manager. */ declare function useMotionControls>(motionProperties: MotionProperties, variants?: MaybeRef, { motionValues, push, stop }?: MotionTransitions): MotionControls; /** * A Composable executing resolved variants features from variants declarations. * * Supports: * - lifeCycleHooks: Bind the motion hooks to the component lifecycle hooks. */ declare function useMotionFeatures>(instance: MotionInstance, options?: UseMotionOptions): void; /** * A Composable giving access to both `transform` and `style`objects for a single element. * * @param target */ declare function useMotionProperties(target: MaybeRef, defaultValues?: Partial): { motionProperties: vue.Reactive; style: { [x: `--${string}`]: string | number | undefined; filter?: csstype.Property.Filter | undefined; fill?: csstype.Property.Fill | undefined; accentColor?: csstype.Property.AccentColor | undefined; alignContent?: csstype.Property.AlignContent | undefined; alignItems?: csstype.Property.AlignItems | undefined; alignSelf?: csstype.Property.AlignSelf | undefined; alignTracks?: csstype.Property.AlignTracks | undefined; animationComposition?: csstype.Property.AnimationComposition | undefined; animationDelay?: csstype.Property.AnimationDelay | undefined; animationDirection?: csstype.Property.AnimationDirection | undefined; animationDuration?: csstype.Property.AnimationDuration | undefined; animationFillMode?: csstype.Property.AnimationFillMode | undefined; animationIterationCount?: csstype.Property.AnimationIterationCount | undefined; animationName?: csstype.Property.AnimationName | undefined; animationPlayState?: csstype.Property.AnimationPlayState | undefined; animationRangeEnd?: csstype.Property.AnimationRangeEnd | undefined; animationRangeStart?: csstype.Property.AnimationRangeStart | undefined; animationTimeline?: csstype.Property.AnimationTimeline | undefined; animationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; appearance?: csstype.Property.Appearance | undefined; aspectRatio?: csstype.Property.AspectRatio | undefined; backdropFilter?: csstype.Property.BackdropFilter | undefined; backfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; backgroundAttachment?: csstype.Property.BackgroundAttachment | undefined; backgroundBlendMode?: csstype.Property.BackgroundBlendMode | undefined; backgroundClip?: csstype.Property.BackgroundClip | undefined; backgroundColor?: csstype.Property.BackgroundColor | undefined; backgroundImage?: csstype.Property.BackgroundImage | undefined; backgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; backgroundPositionX?: csstype.Property.BackgroundPositionX | undefined; backgroundPositionY?: csstype.Property.BackgroundPositionY | undefined; backgroundRepeat?: csstype.Property.BackgroundRepeat | undefined; backgroundSize?: csstype.Property.BackgroundSize | undefined; blockOverflow?: csstype.Property.BlockOverflow | undefined; blockSize?: csstype.Property.BlockSize | undefined; borderBlockColor?: csstype.Property.BorderBlockColor | undefined; borderBlockEndColor?: csstype.Property.BorderBlockEndColor | undefined; borderBlockEndStyle?: csstype.Property.BorderBlockEndStyle | undefined; borderBlockEndWidth?: csstype.Property.BorderBlockEndWidth | undefined; borderBlockStartColor?: csstype.Property.BorderBlockStartColor | undefined; borderBlockStartStyle?: csstype.Property.BorderBlockStartStyle | undefined; borderBlockStartWidth?: csstype.Property.BorderBlockStartWidth | undefined; borderBlockStyle?: csstype.Property.BorderBlockStyle | undefined; borderBlockWidth?: csstype.Property.BorderBlockWidth | undefined; borderBottomColor?: csstype.Property.BorderBottomColor | undefined; borderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; borderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; borderBottomStyle?: csstype.Property.BorderBottomStyle | undefined; borderBottomWidth?: csstype.Property.BorderBottomWidth | undefined; borderCollapse?: csstype.Property.BorderCollapse | undefined; borderEndEndRadius?: csstype.Property.BorderEndEndRadius | undefined; borderEndStartRadius?: csstype.Property.BorderEndStartRadius | undefined; borderImageOutset?: csstype.Property.BorderImageOutset | undefined; borderImageRepeat?: csstype.Property.BorderImageRepeat | undefined; borderImageSlice?: csstype.Property.BorderImageSlice | undefined; borderImageSource?: csstype.Property.BorderImageSource | undefined; borderImageWidth?: csstype.Property.BorderImageWidth | undefined; borderInlineColor?: csstype.Property.BorderInlineColor | undefined; borderInlineEndColor?: csstype.Property.BorderInlineEndColor | undefined; borderInlineEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; borderInlineEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; borderInlineStartColor?: csstype.Property.BorderInlineStartColor | undefined; borderInlineStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; borderInlineStartWidth?: csstype.Property.BorderInlineStartWidth | undefined; borderInlineStyle?: csstype.Property.BorderInlineStyle | undefined; borderInlineWidth?: csstype.Property.BorderInlineWidth | undefined; borderLeftColor?: csstype.Property.BorderLeftColor | undefined; borderLeftStyle?: csstype.Property.BorderLeftStyle | undefined; borderLeftWidth?: csstype.Property.BorderLeftWidth | undefined; borderRightColor?: csstype.Property.BorderRightColor | undefined; borderRightStyle?: csstype.Property.BorderRightStyle | undefined; borderRightWidth?: csstype.Property.BorderRightWidth | undefined; borderSpacing?: csstype.Property.BorderSpacing | undefined; borderStartEndRadius?: csstype.Property.BorderStartEndRadius | undefined; borderStartStartRadius?: csstype.Property.BorderStartStartRadius | undefined; borderTopColor?: csstype.Property.BorderTopColor | undefined; borderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; borderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; borderTopStyle?: csstype.Property.BorderTopStyle | undefined; borderTopWidth?: csstype.Property.BorderTopWidth | undefined; bottom?: csstype.Property.Bottom | undefined; boxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; boxShadow?: csstype.Property.BoxShadow | undefined; boxSizing?: csstype.Property.BoxSizing | undefined; breakAfter?: csstype.Property.BreakAfter | undefined; breakBefore?: csstype.Property.BreakBefore | undefined; breakInside?: csstype.Property.BreakInside | undefined; captionSide?: csstype.Property.CaptionSide | undefined; caretColor?: csstype.Property.CaretColor | undefined; caretShape?: csstype.Property.CaretShape | undefined; clear?: csstype.Property.Clear | undefined; clipPath?: csstype.Property.ClipPath | undefined; color?: csstype.Property.Color | undefined; colorAdjust?: csstype.Property.PrintColorAdjust | undefined; colorScheme?: csstype.Property.ColorScheme | undefined; columnCount?: csstype.Property.ColumnCount | undefined; columnFill?: csstype.Property.ColumnFill | undefined; columnGap?: csstype.Property.ColumnGap | undefined; columnRuleColor?: csstype.Property.ColumnRuleColor | undefined; columnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; columnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; columnSpan?: csstype.Property.ColumnSpan | undefined; columnWidth?: csstype.Property.ColumnWidth | undefined; contain?: csstype.Property.Contain | undefined; containIntrinsicBlockSize?: csstype.Property.ContainIntrinsicBlockSize | undefined; containIntrinsicHeight?: csstype.Property.ContainIntrinsicHeight | undefined; containIntrinsicInlineSize?: csstype.Property.ContainIntrinsicInlineSize | undefined; containIntrinsicWidth?: csstype.Property.ContainIntrinsicWidth | undefined; containerName?: csstype.Property.ContainerName | undefined; containerType?: csstype.Property.ContainerType | undefined; content?: csstype.Property.Content | undefined; contentVisibility?: csstype.Property.ContentVisibility | undefined; counterIncrement?: csstype.Property.CounterIncrement | undefined; counterReset?: csstype.Property.CounterReset | undefined; counterSet?: csstype.Property.CounterSet | undefined; cursor?: csstype.Property.Cursor | undefined; direction?: csstype.Property.Direction | undefined; display?: csstype.Property.Display | undefined; emptyCells?: csstype.Property.EmptyCells | undefined; flexBasis?: csstype.Property.FlexBasis | undefined; flexDirection?: csstype.Property.FlexDirection | undefined; flexGrow?: csstype.Property.FlexGrow | undefined; flexShrink?: csstype.Property.FlexShrink | undefined; flexWrap?: csstype.Property.FlexWrap | undefined; float?: csstype.Property.Float | undefined; fontFamily?: csstype.Property.FontFamily | undefined; fontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; fontKerning?: csstype.Property.FontKerning | undefined; fontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; fontOpticalSizing?: csstype.Property.FontOpticalSizing | undefined; fontPalette?: csstype.Property.FontPalette | undefined; fontSize?: csstype.Property.FontSize | undefined; fontSizeAdjust?: csstype.Property.FontSizeAdjust | undefined; fontSmooth?: csstype.Property.FontSmooth | undefined; fontStretch?: csstype.Property.FontStretch | undefined; fontStyle?: csstype.Property.FontStyle | undefined; fontSynthesis?: csstype.Property.FontSynthesis | undefined; fontSynthesisPosition?: csstype.Property.FontSynthesisPosition | undefined; fontSynthesisSmallCaps?: csstype.Property.FontSynthesisSmallCaps | undefined; fontSynthesisStyle?: csstype.Property.FontSynthesisStyle | undefined; fontSynthesisWeight?: csstype.Property.FontSynthesisWeight | undefined; fontVariant?: csstype.Property.FontVariant | undefined; fontVariantAlternates?: csstype.Property.FontVariantAlternates | undefined; fontVariantCaps?: csstype.Property.FontVariantCaps | undefined; fontVariantEastAsian?: csstype.Property.FontVariantEastAsian | undefined; fontVariantEmoji?: csstype.Property.FontVariantEmoji | undefined; fontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; fontVariantNumeric?: csstype.Property.FontVariantNumeric | undefined; fontVariantPosition?: csstype.Property.FontVariantPosition | undefined; fontVariationSettings?: csstype.Property.FontVariationSettings | undefined; fontWeight?: csstype.Property.FontWeight | undefined; forcedColorAdjust?: csstype.Property.ForcedColorAdjust | undefined; gridAutoColumns?: csstype.Property.GridAutoColumns | undefined; gridAutoFlow?: csstype.Property.GridAutoFlow | undefined; gridAutoRows?: csstype.Property.GridAutoRows | undefined; gridColumnEnd?: csstype.Property.GridColumnEnd | undefined; gridColumnStart?: csstype.Property.GridColumnStart | undefined; gridRowEnd?: csstype.Property.GridRowEnd | undefined; gridRowStart?: csstype.Property.GridRowStart | undefined; gridTemplateAreas?: csstype.Property.GridTemplateAreas | undefined; gridTemplateColumns?: csstype.Property.GridTemplateColumns | undefined; gridTemplateRows?: csstype.Property.GridTemplateRows | undefined; hangingPunctuation?: csstype.Property.HangingPunctuation | undefined; height?: csstype.Property.Height | undefined; hyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; hyphenateLimitChars?: csstype.Property.HyphenateLimitChars | undefined; hyphens?: csstype.Property.Hyphens | undefined; imageOrientation?: csstype.Property.ImageOrientation | undefined; imageRendering?: csstype.Property.ImageRendering | undefined; imageResolution?: csstype.Property.ImageResolution | undefined; initialLetter?: csstype.Property.InitialLetter | undefined; inlineSize?: csstype.Property.InlineSize | undefined; inputSecurity?: csstype.Property.InputSecurity | undefined; insetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; insetBlockStart?: csstype.Property.InsetBlockStart | undefined; insetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; insetInlineStart?: csstype.Property.InsetInlineStart | undefined; isolation?: csstype.Property.Isolation | undefined; justifyContent?: csstype.Property.JustifyContent | undefined; justifyItems?: csstype.Property.JustifyItems | undefined; justifySelf?: csstype.Property.JustifySelf | undefined; justifyTracks?: csstype.Property.JustifyTracks | undefined; left?: csstype.Property.Left | undefined; letterSpacing?: csstype.Property.LetterSpacing | undefined; lineBreak?: csstype.Property.LineBreak | undefined; lineHeight?: csstype.Property.LineHeight | undefined; lineHeightStep?: csstype.Property.LineHeightStep | undefined; listStyleImage?: csstype.Property.ListStyleImage | undefined; listStylePosition?: csstype.Property.ListStylePosition | undefined; listStyleType?: csstype.Property.ListStyleType | undefined; marginBlockEnd?: csstype.Property.MarginBlockEnd | undefined; marginBlockStart?: csstype.Property.MarginBlockStart | undefined; marginBottom?: csstype.Property.MarginBottom | undefined; marginInlineEnd?: csstype.Property.MarginInlineEnd | undefined; marginInlineStart?: csstype.Property.MarginInlineStart | undefined; marginLeft?: csstype.Property.MarginLeft | undefined; marginRight?: csstype.Property.MarginRight | undefined; marginTop?: csstype.Property.MarginTop | undefined; marginTrim?: csstype.Property.MarginTrim | undefined; maskBorderMode?: csstype.Property.MaskBorderMode | undefined; maskBorderOutset?: csstype.Property.MaskBorderOutset | undefined; maskBorderRepeat?: csstype.Property.MaskBorderRepeat | undefined; maskBorderSlice?: csstype.Property.MaskBorderSlice | undefined; maskBorderSource?: csstype.Property.MaskBorderSource | undefined; maskBorderWidth?: csstype.Property.MaskBorderWidth | undefined; maskClip?: csstype.Property.MaskClip | undefined; maskComposite?: csstype.Property.MaskComposite | undefined; maskImage?: csstype.Property.MaskImage | undefined; maskMode?: csstype.Property.MaskMode | undefined; maskOrigin?: csstype.Property.MaskOrigin | undefined; maskPosition?: csstype.Property.MaskPosition | undefined; maskRepeat?: csstype.Property.MaskRepeat | undefined; maskSize?: csstype.Property.MaskSize | undefined; maskType?: csstype.Property.MaskType | undefined; masonryAutoFlow?: csstype.Property.MasonryAutoFlow | undefined; mathDepth?: csstype.Property.MathDepth | undefined; mathShift?: csstype.Property.MathShift | undefined; mathStyle?: csstype.Property.MathStyle | undefined; maxBlockSize?: csstype.Property.MaxBlockSize | undefined; maxHeight?: csstype.Property.MaxHeight | undefined; maxInlineSize?: csstype.Property.MaxInlineSize | undefined; maxLines?: csstype.Property.MaxLines | undefined; maxWidth?: csstype.Property.MaxWidth | undefined; minBlockSize?: csstype.Property.MinBlockSize | undefined; minHeight?: csstype.Property.MinHeight | undefined; minInlineSize?: csstype.Property.MinInlineSize | undefined; minWidth?: csstype.Property.MinWidth | undefined; mixBlendMode?: csstype.Property.MixBlendMode | undefined; motionDistance?: csstype.Property.OffsetDistance | undefined; motionPath?: csstype.Property.OffsetPath | undefined; motionRotation?: csstype.Property.OffsetRotate | undefined; objectFit?: csstype.Property.ObjectFit | undefined; objectPosition?: csstype.Property.ObjectPosition | undefined; offsetAnchor?: csstype.Property.OffsetAnchor | undefined; offsetDistance?: csstype.Property.OffsetDistance | undefined; offsetPath?: csstype.Property.OffsetPath | undefined; offsetPosition?: csstype.Property.OffsetPosition | undefined; offsetRotate?: csstype.Property.OffsetRotate | undefined; offsetRotation?: csstype.Property.OffsetRotate | undefined; opacity?: csstype.Property.Opacity | undefined; order?: csstype.Property.Order | undefined; orphans?: csstype.Property.Orphans | undefined; outlineColor?: csstype.Property.OutlineColor | undefined; outlineOffset?: csstype.Property.OutlineOffset | undefined; outlineStyle?: csstype.Property.OutlineStyle | undefined; outlineWidth?: csstype.Property.OutlineWidth | undefined; overflowAnchor?: csstype.Property.OverflowAnchor | undefined; overflowBlock?: csstype.Property.OverflowBlock | undefined; overflowClipBox?: csstype.Property.OverflowClipBox | undefined; overflowClipMargin?: csstype.Property.OverflowClipMargin | undefined; overflowInline?: csstype.Property.OverflowInline | undefined; overflowWrap?: csstype.Property.OverflowWrap | undefined; overflowX?: csstype.Property.OverflowX | undefined; overflowY?: csstype.Property.OverflowY | undefined; overlay?: csstype.Property.Overlay | undefined; overscrollBehaviorBlock?: csstype.Property.OverscrollBehaviorBlock | undefined; overscrollBehaviorInline?: csstype.Property.OverscrollBehaviorInline | undefined; overscrollBehaviorX?: csstype.Property.OverscrollBehaviorX | undefined; overscrollBehaviorY?: csstype.Property.OverscrollBehaviorY | undefined; paddingBlockEnd?: csstype.Property.PaddingBlockEnd | undefined; paddingBlockStart?: csstype.Property.PaddingBlockStart | undefined; paddingBottom?: csstype.Property.PaddingBottom | undefined; paddingInlineEnd?: csstype.Property.PaddingInlineEnd | undefined; paddingInlineStart?: csstype.Property.PaddingInlineStart | undefined; paddingLeft?: csstype.Property.PaddingLeft | undefined; paddingRight?: csstype.Property.PaddingRight | undefined; paddingTop?: csstype.Property.PaddingTop | undefined; page?: csstype.Property.Page | undefined; pageBreakAfter?: csstype.Property.PageBreakAfter | undefined; pageBreakBefore?: csstype.Property.PageBreakBefore | undefined; pageBreakInside?: csstype.Property.PageBreakInside | undefined; paintOrder?: csstype.Property.PaintOrder | undefined; perspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; pointerEvents?: csstype.Property.PointerEvents | undefined; position?: csstype.Property.Position | undefined; printColorAdjust?: csstype.Property.PrintColorAdjust | undefined; quotes?: csstype.Property.Quotes | undefined; resize?: csstype.Property.Resize | undefined; right?: csstype.Property.Right | undefined; rowGap?: csstype.Property.RowGap | undefined; rubyAlign?: csstype.Property.RubyAlign | undefined; rubyMerge?: csstype.Property.RubyMerge | undefined; rubyPosition?: csstype.Property.RubyPosition | undefined; scrollBehavior?: csstype.Property.ScrollBehavior | undefined; scrollMarginBlockEnd?: csstype.Property.ScrollMarginBlockEnd | undefined; scrollMarginBlockStart?: csstype.Property.ScrollMarginBlockStart | undefined; scrollMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollMarginInlineEnd?: csstype.Property.ScrollMarginInlineEnd | undefined; scrollMarginInlineStart?: csstype.Property.ScrollMarginInlineStart | undefined; scrollMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollPaddingBlockEnd?: csstype.Property.ScrollPaddingBlockEnd | undefined; scrollPaddingBlockStart?: csstype.Property.ScrollPaddingBlockStart | undefined; scrollPaddingBottom?: csstype.Property.ScrollPaddingBottom | undefined; scrollPaddingInlineEnd?: csstype.Property.ScrollPaddingInlineEnd | undefined; scrollPaddingInlineStart?: csstype.Property.ScrollPaddingInlineStart | undefined; scrollPaddingLeft?: csstype.Property.ScrollPaddingLeft | undefined; scrollPaddingRight?: csstype.Property.ScrollPaddingRight | undefined; scrollPaddingTop?: csstype.Property.ScrollPaddingTop | undefined; scrollSnapAlign?: csstype.Property.ScrollSnapAlign | undefined; scrollSnapMarginBottom?: csstype.Property.ScrollMarginBottom | undefined; scrollSnapMarginLeft?: csstype.Property.ScrollMarginLeft | undefined; scrollSnapMarginRight?: csstype.Property.ScrollMarginRight | undefined; scrollSnapMarginTop?: csstype.Property.ScrollMarginTop | undefined; scrollSnapStop?: csstype.Property.ScrollSnapStop | undefined; scrollSnapType?: csstype.Property.ScrollSnapType | undefined; scrollTimelineAxis?: csstype.Property.ScrollTimelineAxis | undefined; scrollTimelineName?: csstype.Property.ScrollTimelineName | undefined; scrollbarColor?: csstype.Property.ScrollbarColor | undefined; scrollbarGutter?: csstype.Property.ScrollbarGutter | undefined; scrollbarWidth?: csstype.Property.ScrollbarWidth | undefined; shapeImageThreshold?: csstype.Property.ShapeImageThreshold | undefined; shapeMargin?: csstype.Property.ShapeMargin | undefined; shapeOutside?: csstype.Property.ShapeOutside | undefined; tabSize?: csstype.Property.TabSize | undefined; tableLayout?: csstype.Property.TableLayout | undefined; textAlign?: csstype.Property.TextAlign | undefined; textAlignLast?: csstype.Property.TextAlignLast | undefined; textCombineUpright?: csstype.Property.TextCombineUpright | undefined; textDecorationColor?: csstype.Property.TextDecorationColor | undefined; textDecorationLine?: csstype.Property.TextDecorationLine | undefined; textDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; textDecorationSkipInk?: csstype.Property.TextDecorationSkipInk | undefined; textDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; textDecorationThickness?: csstype.Property.TextDecorationThickness | undefined; textEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; textEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; textEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; textIndent?: csstype.Property.TextIndent | undefined; textJustify?: csstype.Property.TextJustify | undefined; textOrientation?: csstype.Property.TextOrientation | undefined; textOverflow?: csstype.Property.TextOverflow | undefined; textRendering?: csstype.Property.TextRendering | undefined; textShadow?: csstype.Property.TextShadow | undefined; textSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; textTransform?: csstype.Property.TextTransform | undefined; textUnderlineOffset?: csstype.Property.TextUnderlineOffset | undefined; textUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; textWrap?: csstype.Property.TextWrap | undefined; timelineScope?: csstype.Property.TimelineScope | undefined; top?: csstype.Property.Top | undefined; touchAction?: csstype.Property.TouchAction | undefined; transitionBehavior?: csstype.Property.TransitionBehavior | undefined; transitionDelay?: csstype.Property.TransitionDelay | undefined; transitionDuration?: csstype.Property.TransitionDuration | undefined; transitionProperty?: csstype.Property.TransitionProperty | undefined; transitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; translate?: csstype.Property.Translate | undefined; unicodeBidi?: csstype.Property.UnicodeBidi | undefined; userSelect?: csstype.Property.UserSelect | undefined; verticalAlign?: csstype.Property.VerticalAlign | undefined; viewTimelineAxis?: csstype.Property.ViewTimelineAxis | undefined; viewTimelineInset?: csstype.Property.ViewTimelineInset | undefined; viewTimelineName?: csstype.Property.ViewTimelineName | undefined; viewTransitionName?: csstype.Property.ViewTransitionName | undefined; visibility?: csstype.Property.Visibility | undefined; whiteSpace?: csstype.Property.WhiteSpace | undefined; whiteSpaceCollapse?: csstype.Property.WhiteSpaceCollapse | undefined; whiteSpaceTrim?: csstype.Property.WhiteSpaceTrim | undefined; widows?: csstype.Property.Widows | undefined; width?: csstype.Property.Width | undefined; willChange?: csstype.Property.WillChange | undefined; wordBreak?: csstype.Property.WordBreak | undefined; wordSpacing?: csstype.Property.WordSpacing | undefined; wordWrap?: csstype.Property.WordWrap | undefined; writingMode?: csstype.Property.WritingMode | undefined; zIndex?: csstype.Property.ZIndex | undefined; zoom?: csstype.Property.Zoom | undefined; all?: csstype.Globals | undefined; animation?: csstype.Property.Animation | undefined; animationRange?: csstype.Property.AnimationRange | undefined; background?: csstype.Property.Background | undefined; backgroundPosition?: csstype.Property.BackgroundPosition | undefined; border?: csstype.Property.Border | undefined; borderBlock?: csstype.Property.BorderBlock | undefined; borderBlockEnd?: csstype.Property.BorderBlockEnd | undefined; borderBlockStart?: csstype.Property.BorderBlockStart | undefined; borderBottom?: csstype.Property.BorderBottom | undefined; borderColor?: csstype.Property.BorderColor | undefined; borderImage?: csstype.Property.BorderImage | undefined; borderInline?: csstype.Property.BorderInline | undefined; borderInlineEnd?: csstype.Property.BorderInlineEnd | undefined; borderInlineStart?: csstype.Property.BorderInlineStart | undefined; borderLeft?: csstype.Property.BorderLeft | undefined; borderRadius?: csstype.Property.BorderRadius | undefined; borderRight?: csstype.Property.BorderRight | undefined; borderStyle?: csstype.Property.BorderStyle | undefined; borderTop?: csstype.Property.BorderTop | undefined; borderWidth?: csstype.Property.BorderWidth | undefined; caret?: csstype.Property.Caret | undefined; columnRule?: csstype.Property.ColumnRule | undefined; columns?: csstype.Property.Columns | undefined; containIntrinsicSize?: csstype.Property.ContainIntrinsicSize | undefined; container?: csstype.Property.Container | undefined; flex?: csstype.Property.Flex | undefined; flexFlow?: csstype.Property.FlexFlow | undefined; font?: csstype.Property.Font | undefined; gap?: csstype.Property.Gap | undefined; grid?: csstype.Property.Grid | undefined; gridArea?: csstype.Property.GridArea | undefined; gridColumn?: csstype.Property.GridColumn | undefined; gridRow?: csstype.Property.GridRow | undefined; gridTemplate?: csstype.Property.GridTemplate | undefined; inset?: csstype.Property.Inset | undefined; insetBlock?: csstype.Property.InsetBlock | undefined; insetInline?: csstype.Property.InsetInline | undefined; lineClamp?: csstype.Property.LineClamp | undefined; listStyle?: csstype.Property.ListStyle | undefined; margin?: csstype.Property.Margin | undefined; marginBlock?: csstype.Property.MarginBlock | undefined; marginInline?: csstype.Property.MarginInline | undefined; mask?: csstype.Property.Mask | undefined; maskBorder?: csstype.Property.MaskBorder | undefined; motion?: csstype.Property.Offset | undefined; offset?: csstype.Property.Offset | undefined; outline?: csstype.Property.Outline | undefined; overflow?: csstype.Property.Overflow | undefined; overscrollBehavior?: csstype.Property.OverscrollBehavior | undefined; padding?: csstype.Property.Padding | undefined; paddingBlock?: csstype.Property.PaddingBlock | undefined; paddingInline?: csstype.Property.PaddingInline | undefined; placeContent?: csstype.Property.PlaceContent | undefined; placeItems?: csstype.Property.PlaceItems | undefined; placeSelf?: csstype.Property.PlaceSelf | undefined; scrollMargin?: csstype.Property.ScrollMargin | undefined; scrollMarginBlock?: csstype.Property.ScrollMarginBlock | undefined; scrollMarginInline?: csstype.Property.ScrollMarginInline | undefined; scrollPadding?: csstype.Property.ScrollPadding | undefined; scrollPaddingBlock?: csstype.Property.ScrollPaddingBlock | undefined; scrollPaddingInline?: csstype.Property.ScrollPaddingInline | undefined; scrollSnapMargin?: csstype.Property.ScrollMargin | undefined; scrollTimeline?: csstype.Property.ScrollTimeline | undefined; textDecoration?: csstype.Property.TextDecoration | undefined; textEmphasis?: csstype.Property.TextEmphasis | undefined; viewTimeline?: csstype.Property.ViewTimeline | undefined; MozAnimationDelay?: csstype.Property.AnimationDelay | undefined; MozAnimationDirection?: csstype.Property.AnimationDirection | undefined; MozAnimationDuration?: csstype.Property.AnimationDuration | undefined; MozAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; MozAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; MozAnimationName?: csstype.Property.AnimationName | undefined; MozAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; MozAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; MozAppearance?: csstype.Property.MozAppearance | undefined; MozBinding?: csstype.Property.MozBinding | undefined; MozBorderBottomColors?: csstype.Property.MozBorderBottomColors | undefined; MozBorderEndColor?: csstype.Property.BorderInlineEndColor | undefined; MozBorderEndStyle?: csstype.Property.BorderInlineEndStyle | undefined; MozBorderEndWidth?: csstype.Property.BorderInlineEndWidth | undefined; MozBorderLeftColors?: csstype.Property.MozBorderLeftColors | undefined; MozBorderRightColors?: csstype.Property.MozBorderRightColors | undefined; MozBorderStartColor?: csstype.Property.BorderInlineStartColor | undefined; MozBorderStartStyle?: csstype.Property.BorderInlineStartStyle | undefined; MozBorderTopColors?: csstype.Property.MozBorderTopColors | undefined; MozBoxSizing?: csstype.Property.BoxSizing | undefined; MozColumnCount?: csstype.Property.ColumnCount | undefined; MozColumnFill?: csstype.Property.ColumnFill | undefined; MozColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; MozColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; MozColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; MozColumnWidth?: csstype.Property.ColumnWidth | undefined; MozContextProperties?: csstype.Property.MozContextProperties | undefined; MozFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; MozFontLanguageOverride?: csstype.Property.FontLanguageOverride | undefined; MozHyphens?: csstype.Property.Hyphens | undefined; MozImageRegion?: csstype.Property.MozImageRegion | undefined; MozMarginEnd?: csstype.Property.MarginInlineEnd | undefined; MozMarginStart?: csstype.Property.MarginInlineStart | undefined; MozOrient?: csstype.Property.MozOrient | undefined; MozOsxFontSmoothing?: csstype.Property.FontSmooth | undefined; MozOutlineRadiusBottomleft?: csstype.Property.MozOutlineRadiusBottomleft | undefined; MozOutlineRadiusBottomright?: csstype.Property.MozOutlineRadiusBottomright | undefined; MozOutlineRadiusTopleft?: csstype.Property.MozOutlineRadiusTopleft | undefined; MozOutlineRadiusTopright?: csstype.Property.MozOutlineRadiusTopright | undefined; MozPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; MozPaddingStart?: csstype.Property.PaddingInlineStart | undefined; MozStackSizing?: csstype.Property.MozStackSizing | undefined; MozTabSize?: csstype.Property.TabSize | undefined; MozTextBlink?: csstype.Property.MozTextBlink | undefined; MozTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; MozUserFocus?: csstype.Property.MozUserFocus | undefined; MozUserModify?: csstype.Property.MozUserModify | undefined; MozUserSelect?: csstype.Property.UserSelect | undefined; MozWindowDragging?: csstype.Property.MozWindowDragging | undefined; MozWindowShadow?: csstype.Property.MozWindowShadow | undefined; msAccelerator?: csstype.Property.MsAccelerator | undefined; msBlockProgression?: csstype.Property.MsBlockProgression | undefined; msContentZoomChaining?: csstype.Property.MsContentZoomChaining | undefined; msContentZoomLimitMax?: csstype.Property.MsContentZoomLimitMax | undefined; msContentZoomLimitMin?: csstype.Property.MsContentZoomLimitMin | undefined; msContentZoomSnapPoints?: csstype.Property.MsContentZoomSnapPoints | undefined; msContentZoomSnapType?: csstype.Property.MsContentZoomSnapType | undefined; msContentZooming?: csstype.Property.MsContentZooming | undefined; msFilter?: csstype.Property.MsFilter | undefined; msFlexDirection?: csstype.Property.FlexDirection | undefined; msFlexPositive?: csstype.Property.FlexGrow | undefined; msFlowFrom?: csstype.Property.MsFlowFrom | undefined; msFlowInto?: csstype.Property.MsFlowInto | undefined; msGridColumns?: csstype.Property.MsGridColumns | undefined; msGridRows?: csstype.Property.MsGridRows | undefined; msHighContrastAdjust?: csstype.Property.MsHighContrastAdjust | undefined; msHyphenateLimitChars?: csstype.Property.MsHyphenateLimitChars | undefined; msHyphenateLimitLines?: csstype.Property.MsHyphenateLimitLines | undefined; msHyphenateLimitZone?: csstype.Property.MsHyphenateLimitZone | undefined; msHyphens?: csstype.Property.Hyphens | undefined; msImeAlign?: csstype.Property.MsImeAlign | undefined; msLineBreak?: csstype.Property.LineBreak | undefined; msOrder?: csstype.Property.Order | undefined; msOverflowStyle?: csstype.Property.MsOverflowStyle | undefined; msOverflowX?: csstype.Property.OverflowX | undefined; msOverflowY?: csstype.Property.OverflowY | undefined; msScrollChaining?: csstype.Property.MsScrollChaining | undefined; msScrollLimitXMax?: csstype.Property.MsScrollLimitXMax | undefined; msScrollLimitXMin?: csstype.Property.MsScrollLimitXMin | undefined; msScrollLimitYMax?: csstype.Property.MsScrollLimitYMax | undefined; msScrollLimitYMin?: csstype.Property.MsScrollLimitYMin | undefined; msScrollRails?: csstype.Property.MsScrollRails | undefined; msScrollSnapPointsX?: csstype.Property.MsScrollSnapPointsX | undefined; msScrollSnapPointsY?: csstype.Property.MsScrollSnapPointsY | undefined; msScrollSnapType?: csstype.Property.MsScrollSnapType | undefined; msScrollTranslation?: csstype.Property.MsScrollTranslation | undefined; msScrollbar3dlightColor?: csstype.Property.MsScrollbar3dlightColor | undefined; msScrollbarArrowColor?: csstype.Property.MsScrollbarArrowColor | undefined; msScrollbarBaseColor?: csstype.Property.MsScrollbarBaseColor | undefined; msScrollbarDarkshadowColor?: csstype.Property.MsScrollbarDarkshadowColor | undefined; msScrollbarFaceColor?: csstype.Property.MsScrollbarFaceColor | undefined; msScrollbarHighlightColor?: csstype.Property.MsScrollbarHighlightColor | undefined; msScrollbarShadowColor?: csstype.Property.MsScrollbarShadowColor | undefined; msScrollbarTrackColor?: csstype.Property.MsScrollbarTrackColor | undefined; msTextAutospace?: csstype.Property.MsTextAutospace | undefined; msTextCombineHorizontal?: csstype.Property.TextCombineUpright | undefined; msTextOverflow?: csstype.Property.TextOverflow | undefined; msTouchAction?: csstype.Property.TouchAction | undefined; msTouchSelect?: csstype.Property.MsTouchSelect | undefined; msTransform?: csstype.Property.Transform | undefined; msTransformOrigin?: csstype.Property.TransformOrigin | undefined; msTransitionDelay?: csstype.Property.TransitionDelay | undefined; msTransitionDuration?: csstype.Property.TransitionDuration | undefined; msTransitionProperty?: csstype.Property.TransitionProperty | undefined; msTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; msUserSelect?: csstype.Property.MsUserSelect | undefined; msWordBreak?: csstype.Property.WordBreak | undefined; msWrapFlow?: csstype.Property.MsWrapFlow | undefined; msWrapMargin?: csstype.Property.MsWrapMargin | undefined; msWrapThrough?: csstype.Property.MsWrapThrough | undefined; msWritingMode?: csstype.Property.WritingMode | undefined; WebkitAlignContent?: csstype.Property.AlignContent | undefined; WebkitAlignItems?: csstype.Property.AlignItems | undefined; WebkitAlignSelf?: csstype.Property.AlignSelf | undefined; WebkitAnimationDelay?: csstype.Property.AnimationDelay | undefined; WebkitAnimationDirection?: csstype.Property.AnimationDirection | undefined; WebkitAnimationDuration?: csstype.Property.AnimationDuration | undefined; WebkitAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; WebkitAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; WebkitAnimationName?: csstype.Property.AnimationName | undefined; WebkitAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; WebkitAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; WebkitAppearance?: csstype.Property.WebkitAppearance | undefined; WebkitBackdropFilter?: csstype.Property.BackdropFilter | undefined; WebkitBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; WebkitBackgroundClip?: csstype.Property.BackgroundClip | undefined; WebkitBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; WebkitBackgroundSize?: csstype.Property.BackgroundSize | undefined; WebkitBorderBeforeColor?: csstype.Property.WebkitBorderBeforeColor | undefined; WebkitBorderBeforeStyle?: csstype.Property.WebkitBorderBeforeStyle | undefined; WebkitBorderBeforeWidth?: csstype.Property.WebkitBorderBeforeWidth | undefined; WebkitBorderBottomLeftRadius?: csstype.Property.BorderBottomLeftRadius | undefined; WebkitBorderBottomRightRadius?: csstype.Property.BorderBottomRightRadius | undefined; WebkitBorderImageSlice?: csstype.Property.BorderImageSlice | undefined; WebkitBorderTopLeftRadius?: csstype.Property.BorderTopLeftRadius | undefined; WebkitBorderTopRightRadius?: csstype.Property.BorderTopRightRadius | undefined; WebkitBoxDecorationBreak?: csstype.Property.BoxDecorationBreak | undefined; WebkitBoxReflect?: csstype.Property.WebkitBoxReflect | undefined; WebkitBoxShadow?: csstype.Property.BoxShadow | undefined; WebkitBoxSizing?: csstype.Property.BoxSizing | undefined; WebkitClipPath?: csstype.Property.ClipPath | undefined; WebkitColumnCount?: csstype.Property.ColumnCount | undefined; WebkitColumnFill?: csstype.Property.ColumnFill | undefined; WebkitColumnRuleColor?: csstype.Property.ColumnRuleColor | undefined; WebkitColumnRuleStyle?: csstype.Property.ColumnRuleStyle | undefined; WebkitColumnRuleWidth?: csstype.Property.ColumnRuleWidth | undefined; WebkitColumnSpan?: csstype.Property.ColumnSpan | undefined; WebkitColumnWidth?: csstype.Property.ColumnWidth | undefined; WebkitFilter?: csstype.Property.Filter | undefined; WebkitFlexBasis?: csstype.Property.FlexBasis | undefined; WebkitFlexDirection?: csstype.Property.FlexDirection | undefined; WebkitFlexGrow?: csstype.Property.FlexGrow | undefined; WebkitFlexShrink?: csstype.Property.FlexShrink | undefined; WebkitFlexWrap?: csstype.Property.FlexWrap | undefined; WebkitFontFeatureSettings?: csstype.Property.FontFeatureSettings | undefined; WebkitFontKerning?: csstype.Property.FontKerning | undefined; WebkitFontSmoothing?: csstype.Property.FontSmooth | undefined; WebkitFontVariantLigatures?: csstype.Property.FontVariantLigatures | undefined; WebkitHyphenateCharacter?: csstype.Property.HyphenateCharacter | undefined; WebkitHyphens?: csstype.Property.Hyphens | undefined; WebkitInitialLetter?: csstype.Property.InitialLetter | undefined; WebkitJustifyContent?: csstype.Property.JustifyContent | undefined; WebkitLineBreak?: csstype.Property.LineBreak | undefined; WebkitLineClamp?: csstype.Property.WebkitLineClamp | undefined; WebkitMarginEnd?: csstype.Property.MarginInlineEnd | undefined; WebkitMarginStart?: csstype.Property.MarginInlineStart | undefined; WebkitMaskAttachment?: csstype.Property.WebkitMaskAttachment | undefined; WebkitMaskBoxImageOutset?: csstype.Property.MaskBorderOutset | undefined; WebkitMaskBoxImageRepeat?: csstype.Property.MaskBorderRepeat | undefined; WebkitMaskBoxImageSlice?: csstype.Property.MaskBorderSlice | undefined; WebkitMaskBoxImageSource?: csstype.Property.MaskBorderSource | undefined; WebkitMaskBoxImageWidth?: csstype.Property.MaskBorderWidth | undefined; WebkitMaskClip?: csstype.Property.WebkitMaskClip | undefined; WebkitMaskComposite?: csstype.Property.WebkitMaskComposite | undefined; WebkitMaskImage?: csstype.Property.WebkitMaskImage | undefined; WebkitMaskOrigin?: csstype.Property.WebkitMaskOrigin | undefined; WebkitMaskPosition?: csstype.Property.WebkitMaskPosition | undefined; WebkitMaskPositionX?: csstype.Property.WebkitMaskPositionX | undefined; WebkitMaskPositionY?: csstype.Property.WebkitMaskPositionY | undefined; WebkitMaskRepeat?: csstype.Property.WebkitMaskRepeat | undefined; WebkitMaskRepeatX?: csstype.Property.WebkitMaskRepeatX | undefined; WebkitMaskRepeatY?: csstype.Property.WebkitMaskRepeatY | undefined; WebkitMaskSize?: csstype.Property.WebkitMaskSize | undefined; WebkitMaxInlineSize?: csstype.Property.MaxInlineSize | undefined; WebkitOrder?: csstype.Property.Order | undefined; WebkitOverflowScrolling?: csstype.Property.WebkitOverflowScrolling | undefined; WebkitPaddingEnd?: csstype.Property.PaddingInlineEnd | undefined; WebkitPaddingStart?: csstype.Property.PaddingInlineStart | undefined; WebkitPerspective?: csstype.Property.Perspective | undefined; WebkitPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; WebkitPrintColorAdjust?: csstype.Property.PrintColorAdjust | undefined; WebkitRubyPosition?: csstype.Property.RubyPosition | undefined; WebkitScrollSnapType?: csstype.Property.ScrollSnapType | undefined; WebkitShapeMargin?: csstype.Property.ShapeMargin | undefined; WebkitTapHighlightColor?: csstype.Property.WebkitTapHighlightColor | undefined; WebkitTextCombine?: csstype.Property.TextCombineUpright | undefined; WebkitTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; WebkitTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; WebkitTextDecorationSkip?: csstype.Property.TextDecorationSkip | undefined; WebkitTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; WebkitTextEmphasisColor?: csstype.Property.TextEmphasisColor | undefined; WebkitTextEmphasisPosition?: csstype.Property.TextEmphasisPosition | undefined; WebkitTextEmphasisStyle?: csstype.Property.TextEmphasisStyle | undefined; WebkitTextFillColor?: csstype.Property.WebkitTextFillColor | undefined; WebkitTextOrientation?: csstype.Property.TextOrientation | undefined; WebkitTextSizeAdjust?: csstype.Property.TextSizeAdjust | undefined; WebkitTextStrokeColor?: csstype.Property.WebkitTextStrokeColor | undefined; WebkitTextStrokeWidth?: csstype.Property.WebkitTextStrokeWidth | undefined; WebkitTextUnderlinePosition?: csstype.Property.TextUnderlinePosition | undefined; WebkitTouchCallout?: csstype.Property.WebkitTouchCallout | undefined; WebkitTransform?: csstype.Property.Transform | undefined; WebkitTransformOrigin?: csstype.Property.TransformOrigin | undefined; WebkitTransformStyle?: csstype.Property.TransformStyle | undefined; WebkitTransitionDelay?: csstype.Property.TransitionDelay | undefined; WebkitTransitionDuration?: csstype.Property.TransitionDuration | undefined; WebkitTransitionProperty?: csstype.Property.TransitionProperty | undefined; WebkitTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitUserModify?: csstype.Property.WebkitUserModify | undefined; WebkitUserSelect?: csstype.Property.UserSelect | undefined; WebkitWritingMode?: csstype.Property.WritingMode | undefined; MozAnimation?: csstype.Property.Animation | undefined; MozBorderImage?: csstype.Property.BorderImage | undefined; MozColumnRule?: csstype.Property.ColumnRule | undefined; MozColumns?: csstype.Property.Columns | undefined; MozOutlineRadius?: csstype.Property.MozOutlineRadius | undefined; msContentZoomLimit?: csstype.Property.MsContentZoomLimit | undefined; msContentZoomSnap?: csstype.Property.MsContentZoomSnap | undefined; msFlex?: csstype.Property.Flex | undefined; msScrollLimit?: csstype.Property.MsScrollLimit | undefined; msScrollSnapX?: csstype.Property.MsScrollSnapX | undefined; msScrollSnapY?: csstype.Property.MsScrollSnapY | undefined; msTransition?: csstype.Property.Transition | undefined; WebkitAnimation?: csstype.Property.Animation | undefined; WebkitBorderBefore?: csstype.Property.WebkitBorderBefore | undefined; WebkitBorderImage?: csstype.Property.BorderImage | undefined; WebkitBorderRadius?: csstype.Property.BorderRadius | undefined; WebkitColumnRule?: csstype.Property.ColumnRule | undefined; WebkitColumns?: csstype.Property.Columns | undefined; WebkitFlex?: csstype.Property.Flex | undefined; WebkitFlexFlow?: csstype.Property.FlexFlow | undefined; WebkitMask?: csstype.Property.WebkitMask | undefined; WebkitMaskBoxImage?: csstype.Property.MaskBorder | undefined; WebkitTextEmphasis?: csstype.Property.TextEmphasis | undefined; WebkitTextStroke?: csstype.Property.WebkitTextStroke | undefined; WebkitTransition?: csstype.Property.Transition | undefined; azimuth?: csstype.Property.Azimuth | undefined; boxAlign?: csstype.Property.BoxAlign | undefined; boxDirection?: csstype.Property.BoxDirection | undefined; boxFlex?: csstype.Property.BoxFlex | undefined; boxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; boxLines?: csstype.Property.BoxLines | undefined; boxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; boxOrient?: csstype.Property.BoxOrient | undefined; boxPack?: csstype.Property.BoxPack | undefined; clip?: csstype.Property.Clip | undefined; gridColumnGap?: csstype.Property.GridColumnGap | undefined; gridGap?: csstype.Property.GridGap | undefined; gridRowGap?: csstype.Property.GridRowGap | undefined; imeMode?: csstype.Property.ImeMode | undefined; offsetBlock?: csstype.Property.InsetBlock | undefined; offsetBlockEnd?: csstype.Property.InsetBlockEnd | undefined; offsetBlockStart?: csstype.Property.InsetBlockStart | undefined; offsetInline?: csstype.Property.InsetInline | undefined; offsetInlineEnd?: csstype.Property.InsetInlineEnd | undefined; offsetInlineStart?: csstype.Property.InsetInlineStart | undefined; scrollSnapCoordinate?: csstype.Property.ScrollSnapCoordinate | undefined; scrollSnapDestination?: csstype.Property.ScrollSnapDestination | undefined; scrollSnapPointsX?: csstype.Property.ScrollSnapPointsX | undefined; scrollSnapPointsY?: csstype.Property.ScrollSnapPointsY | undefined; scrollSnapTypeX?: csstype.Property.ScrollSnapTypeX | undefined; scrollSnapTypeY?: csstype.Property.ScrollSnapTypeY | undefined; KhtmlBoxAlign?: csstype.Property.BoxAlign | undefined; KhtmlBoxDirection?: csstype.Property.BoxDirection | undefined; KhtmlBoxFlex?: csstype.Property.BoxFlex | undefined; KhtmlBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; KhtmlBoxLines?: csstype.Property.BoxLines | undefined; KhtmlBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; KhtmlBoxOrient?: csstype.Property.BoxOrient | undefined; KhtmlBoxPack?: csstype.Property.BoxPack | undefined; KhtmlLineBreak?: csstype.Property.LineBreak | undefined; KhtmlOpacity?: csstype.Property.Opacity | undefined; KhtmlUserSelect?: csstype.Property.UserSelect | undefined; MozBackfaceVisibility?: csstype.Property.BackfaceVisibility | undefined; MozBackgroundClip?: csstype.Property.BackgroundClip | undefined; MozBackgroundInlinePolicy?: csstype.Property.BoxDecorationBreak | undefined; MozBackgroundOrigin?: csstype.Property.BackgroundOrigin | undefined; MozBackgroundSize?: csstype.Property.BackgroundSize | undefined; MozBorderRadius?: csstype.Property.BorderRadius | undefined; MozBorderRadiusBottomleft?: csstype.Property.BorderBottomLeftRadius | undefined; MozBorderRadiusBottomright?: csstype.Property.BorderBottomRightRadius | undefined; MozBorderRadiusTopleft?: csstype.Property.BorderTopLeftRadius | undefined; MozBorderRadiusTopright?: csstype.Property.BorderTopRightRadius | undefined; MozBoxAlign?: csstype.Property.BoxAlign | undefined; MozBoxDirection?: csstype.Property.BoxDirection | undefined; MozBoxFlex?: csstype.Property.BoxFlex | undefined; MozBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; MozBoxOrient?: csstype.Property.BoxOrient | undefined; MozBoxPack?: csstype.Property.BoxPack | undefined; MozBoxShadow?: csstype.Property.BoxShadow | undefined; MozFloatEdge?: csstype.Property.MozFloatEdge | undefined; MozForceBrokenImageIcon?: csstype.Property.MozForceBrokenImageIcon | undefined; MozOpacity?: csstype.Property.Opacity | undefined; MozOutline?: csstype.Property.Outline | undefined; MozOutlineColor?: csstype.Property.OutlineColor | undefined; MozOutlineStyle?: csstype.Property.OutlineStyle | undefined; MozOutlineWidth?: csstype.Property.OutlineWidth | undefined; MozPerspective?: csstype.Property.Perspective | undefined; MozPerspectiveOrigin?: csstype.Property.PerspectiveOrigin | undefined; MozTextAlignLast?: csstype.Property.TextAlignLast | undefined; MozTextDecorationColor?: csstype.Property.TextDecorationColor | undefined; MozTextDecorationLine?: csstype.Property.TextDecorationLine | undefined; MozTextDecorationStyle?: csstype.Property.TextDecorationStyle | undefined; MozTransform?: csstype.Property.Transform | undefined; MozTransformOrigin?: csstype.Property.TransformOrigin | undefined; MozTransformStyle?: csstype.Property.TransformStyle | undefined; MozTransition?: csstype.Property.Transition | undefined; MozTransitionDelay?: csstype.Property.TransitionDelay | undefined; MozTransitionDuration?: csstype.Property.TransitionDuration | undefined; MozTransitionProperty?: csstype.Property.TransitionProperty | undefined; MozTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; MozUserInput?: csstype.Property.MozUserInput | undefined; msImeMode?: csstype.Property.ImeMode | undefined; OAnimation?: csstype.Property.Animation | undefined; OAnimationDelay?: csstype.Property.AnimationDelay | undefined; OAnimationDirection?: csstype.Property.AnimationDirection | undefined; OAnimationDuration?: csstype.Property.AnimationDuration | undefined; OAnimationFillMode?: csstype.Property.AnimationFillMode | undefined; OAnimationIterationCount?: csstype.Property.AnimationIterationCount | undefined; OAnimationName?: csstype.Property.AnimationName | undefined; OAnimationPlayState?: csstype.Property.AnimationPlayState | undefined; OAnimationTimingFunction?: csstype.Property.AnimationTimingFunction | undefined; OBackgroundSize?: csstype.Property.BackgroundSize | undefined; OBorderImage?: csstype.Property.BorderImage | undefined; OObjectFit?: csstype.Property.ObjectFit | undefined; OObjectPosition?: csstype.Property.ObjectPosition | undefined; OTabSize?: csstype.Property.TabSize | undefined; OTextOverflow?: csstype.Property.TextOverflow | undefined; OTransform?: csstype.Property.Transform | undefined; OTransformOrigin?: csstype.Property.TransformOrigin | undefined; OTransition?: csstype.Property.Transition | undefined; OTransitionDelay?: csstype.Property.TransitionDelay | undefined; OTransitionDuration?: csstype.Property.TransitionDuration | undefined; OTransitionProperty?: csstype.Property.TransitionProperty | undefined; OTransitionTimingFunction?: csstype.Property.TransitionTimingFunction | undefined; WebkitBoxAlign?: csstype.Property.BoxAlign | undefined; WebkitBoxDirection?: csstype.Property.BoxDirection | undefined; WebkitBoxFlex?: csstype.Property.BoxFlex | undefined; WebkitBoxFlexGroup?: csstype.Property.BoxFlexGroup | undefined; WebkitBoxLines?: csstype.Property.BoxLines | undefined; WebkitBoxOrdinalGroup?: csstype.Property.BoxOrdinalGroup | undefined; WebkitBoxOrient?: csstype.Property.BoxOrient | undefined; WebkitBoxPack?: csstype.Property.BoxPack | undefined; alignmentBaseline?: csstype.Property.AlignmentBaseline | undefined; baselineShift?: csstype.Property.BaselineShift | undefined; clipRule?: csstype.Property.ClipRule | undefined; colorInterpolation?: csstype.Property.ColorInterpolation | undefined; colorRendering?: csstype.Property.ColorRendering | undefined; dominantBaseline?: csstype.Property.DominantBaseline | undefined; fillOpacity?: csstype.Property.FillOpacity | undefined; fillRule?: csstype.Property.FillRule | undefined; floodColor?: csstype.Property.FloodColor | undefined; floodOpacity?: csstype.Property.FloodOpacity | undefined; glyphOrientationVertical?: csstype.Property.GlyphOrientationVertical | undefined; lightingColor?: csstype.Property.LightingColor | undefined; marker?: csstype.Property.Marker | undefined; markerEnd?: csstype.Property.MarkerEnd | undefined; markerMid?: csstype.Property.MarkerMid | undefined; markerStart?: csstype.Property.MarkerStart | undefined; shapeRendering?: csstype.Property.ShapeRendering | undefined; stopColor?: csstype.Property.StopColor | undefined; stopOpacity?: csstype.Property.StopOpacity | undefined; stroke?: csstype.Property.Stroke | undefined; strokeDasharray?: csstype.Property.StrokeDasharray | undefined; strokeDashoffset?: csstype.Property.StrokeDashoffset | undefined; strokeLinecap?: csstype.Property.StrokeLinecap | undefined; strokeLinejoin?: csstype.Property.StrokeLinejoin | undefined; strokeMiterlimit?: csstype.Property.StrokeMiterlimit | undefined; strokeOpacity?: csstype.Property.StrokeOpacity | undefined; strokeWidth?: csstype.Property.StrokeWidth | undefined; textAnchor?: csstype.Property.TextAnchor | undefined; vectorEffect?: csstype.Property.VectorEffect | undefined; "accent-color"?: csstype.Property.AccentColor | undefined; "align-content"?: csstype.Property.AlignContent | undefined; "align-items"?: csstype.Property.AlignItems | undefined; "align-self"?: csstype.Property.AlignSelf | undefined; "align-tracks"?: csstype.Property.AlignTracks | undefined; "animation-composition"?: csstype.Property.AnimationComposition | undefined; "animation-delay"?: csstype.Property.AnimationDelay | undefined; "animation-direction"?: csstype.Property.AnimationDirection | undefined; "animation-duration"?: csstype.Property.AnimationDuration | undefined; "animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "animation-name"?: csstype.Property.AnimationName | undefined; "animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "animation-range-end"?: csstype.Property.AnimationRangeEnd | undefined; "animation-range-start"?: csstype.Property.AnimationRangeStart | undefined; "animation-timeline"?: csstype.Property.AnimationTimeline | undefined; "animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "aspect-ratio"?: csstype.Property.AspectRatio | undefined; "backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "background-attachment"?: csstype.Property.BackgroundAttachment | undefined; "background-blend-mode"?: csstype.Property.BackgroundBlendMode | undefined; "background-clip"?: csstype.Property.BackgroundClip | undefined; "background-color"?: csstype.Property.BackgroundColor | undefined; "background-image"?: csstype.Property.BackgroundImage | undefined; "background-origin"?: csstype.Property.BackgroundOrigin | undefined; "background-position-x"?: csstype.Property.BackgroundPositionX | undefined; "background-position-y"?: csstype.Property.BackgroundPositionY | undefined; "background-repeat"?: csstype.Property.BackgroundRepeat | undefined; "background-size"?: csstype.Property.BackgroundSize | undefined; "block-overflow"?: csstype.Property.BlockOverflow | undefined; "block-size"?: csstype.Property.BlockSize | undefined; "border-block-color"?: csstype.Property.BorderBlockColor | undefined; "border-block-end-color"?: csstype.Property.BorderBlockEndColor | undefined; "border-block-end-style"?: csstype.Property.BorderBlockEndStyle | undefined; "border-block-end-width"?: csstype.Property.BorderBlockEndWidth | undefined; "border-block-start-color"?: csstype.Property.BorderBlockStartColor | undefined; "border-block-start-style"?: csstype.Property.BorderBlockStartStyle | undefined; "border-block-start-width"?: csstype.Property.BorderBlockStartWidth | undefined; "border-block-style"?: csstype.Property.BorderBlockStyle | undefined; "border-block-width"?: csstype.Property.BorderBlockWidth | undefined; "border-bottom-color"?: csstype.Property.BorderBottomColor | undefined; "border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "border-bottom-style"?: csstype.Property.BorderBottomStyle | undefined; "border-bottom-width"?: csstype.Property.BorderBottomWidth | undefined; "border-collapse"?: csstype.Property.BorderCollapse | undefined; "border-end-end-radius"?: csstype.Property.BorderEndEndRadius | undefined; "border-end-start-radius"?: csstype.Property.BorderEndStartRadius | undefined; "border-image-outset"?: csstype.Property.BorderImageOutset | undefined; "border-image-repeat"?: csstype.Property.BorderImageRepeat | undefined; "border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "border-image-source"?: csstype.Property.BorderImageSource | undefined; "border-image-width"?: csstype.Property.BorderImageWidth | undefined; "border-inline-color"?: csstype.Property.BorderInlineColor | undefined; "border-inline-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "border-inline-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "border-inline-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "border-inline-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "border-inline-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "border-inline-start-width"?: csstype.Property.BorderInlineStartWidth | undefined; "border-inline-style"?: csstype.Property.BorderInlineStyle | undefined; "border-inline-width"?: csstype.Property.BorderInlineWidth | undefined; "border-left-color"?: csstype.Property.BorderLeftColor | undefined; "border-left-style"?: csstype.Property.BorderLeftStyle | undefined; "border-left-width"?: csstype.Property.BorderLeftWidth | undefined; "border-right-color"?: csstype.Property.BorderRightColor | undefined; "border-right-style"?: csstype.Property.BorderRightStyle | undefined; "border-right-width"?: csstype.Property.BorderRightWidth | undefined; "border-spacing"?: csstype.Property.BorderSpacing | undefined; "border-start-end-radius"?: csstype.Property.BorderStartEndRadius | undefined; "border-start-start-radius"?: csstype.Property.BorderStartStartRadius | undefined; "border-top-color"?: csstype.Property.BorderTopColor | undefined; "border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "border-top-style"?: csstype.Property.BorderTopStyle | undefined; "border-top-width"?: csstype.Property.BorderTopWidth | undefined; "box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "box-shadow"?: csstype.Property.BoxShadow | undefined; "box-sizing"?: csstype.Property.BoxSizing | undefined; "break-after"?: csstype.Property.BreakAfter | undefined; "break-before"?: csstype.Property.BreakBefore | undefined; "break-inside"?: csstype.Property.BreakInside | undefined; "caption-side"?: csstype.Property.CaptionSide | undefined; "caret-color"?: csstype.Property.CaretColor | undefined; "caret-shape"?: csstype.Property.CaretShape | undefined; "clip-path"?: csstype.Property.ClipPath | undefined; "color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "color-scheme"?: csstype.Property.ColorScheme | undefined; "column-count"?: csstype.Property.ColumnCount | undefined; "column-fill"?: csstype.Property.ColumnFill | undefined; "column-gap"?: csstype.Property.ColumnGap | undefined; "column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "column-span"?: csstype.Property.ColumnSpan | undefined; "column-width"?: csstype.Property.ColumnWidth | undefined; "contain-intrinsic-block-size"?: csstype.Property.ContainIntrinsicBlockSize | undefined; "contain-intrinsic-height"?: csstype.Property.ContainIntrinsicHeight | undefined; "contain-intrinsic-inline-size"?: csstype.Property.ContainIntrinsicInlineSize | undefined; "contain-intrinsic-width"?: csstype.Property.ContainIntrinsicWidth | undefined; "container-name"?: csstype.Property.ContainerName | undefined; "container-type"?: csstype.Property.ContainerType | undefined; "content-visibility"?: csstype.Property.ContentVisibility | undefined; "counter-increment"?: csstype.Property.CounterIncrement | undefined; "counter-reset"?: csstype.Property.CounterReset | undefined; "counter-set"?: csstype.Property.CounterSet | undefined; "empty-cells"?: csstype.Property.EmptyCells | undefined; "flex-basis"?: csstype.Property.FlexBasis | undefined; "flex-direction"?: csstype.Property.FlexDirection | undefined; "flex-grow"?: csstype.Property.FlexGrow | undefined; "flex-shrink"?: csstype.Property.FlexShrink | undefined; "flex-wrap"?: csstype.Property.FlexWrap | undefined; "font-family"?: csstype.Property.FontFamily | undefined; "font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "font-kerning"?: csstype.Property.FontKerning | undefined; "font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "font-optical-sizing"?: csstype.Property.FontOpticalSizing | undefined; "font-palette"?: csstype.Property.FontPalette | undefined; "font-size"?: csstype.Property.FontSize | undefined; "font-size-adjust"?: csstype.Property.FontSizeAdjust | undefined; "font-smooth"?: csstype.Property.FontSmooth | undefined; "font-stretch"?: csstype.Property.FontStretch | undefined; "font-style"?: csstype.Property.FontStyle | undefined; "font-synthesis"?: csstype.Property.FontSynthesis | undefined; "font-synthesis-position"?: csstype.Property.FontSynthesisPosition | undefined; "font-synthesis-small-caps"?: csstype.Property.FontSynthesisSmallCaps | undefined; "font-synthesis-style"?: csstype.Property.FontSynthesisStyle | undefined; "font-synthesis-weight"?: csstype.Property.FontSynthesisWeight | undefined; "font-variant"?: csstype.Property.FontVariant | undefined; "font-variant-alternates"?: csstype.Property.FontVariantAlternates | undefined; "font-variant-caps"?: csstype.Property.FontVariantCaps | undefined; "font-variant-east-asian"?: csstype.Property.FontVariantEastAsian | undefined; "font-variant-emoji"?: csstype.Property.FontVariantEmoji | undefined; "font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "font-variant-numeric"?: csstype.Property.FontVariantNumeric | undefined; "font-variant-position"?: csstype.Property.FontVariantPosition | undefined; "font-variation-settings"?: csstype.Property.FontVariationSettings | undefined; "font-weight"?: csstype.Property.FontWeight | undefined; "forced-color-adjust"?: csstype.Property.ForcedColorAdjust | undefined; "grid-auto-columns"?: csstype.Property.GridAutoColumns | undefined; "grid-auto-flow"?: csstype.Property.GridAutoFlow | undefined; "grid-auto-rows"?: csstype.Property.GridAutoRows | undefined; "grid-column-end"?: csstype.Property.GridColumnEnd | undefined; "grid-column-start"?: csstype.Property.GridColumnStart | undefined; "grid-row-end"?: csstype.Property.GridRowEnd | undefined; "grid-row-start"?: csstype.Property.GridRowStart | undefined; "grid-template-areas"?: csstype.Property.GridTemplateAreas | undefined; "grid-template-columns"?: csstype.Property.GridTemplateColumns | undefined; "grid-template-rows"?: csstype.Property.GridTemplateRows | undefined; "hanging-punctuation"?: csstype.Property.HangingPunctuation | undefined; "hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "hyphenate-limit-chars"?: csstype.Property.HyphenateLimitChars | undefined; "image-orientation"?: csstype.Property.ImageOrientation | undefined; "image-rendering"?: csstype.Property.ImageRendering | undefined; "image-resolution"?: csstype.Property.ImageResolution | undefined; "initial-letter"?: csstype.Property.InitialLetter | undefined; "inline-size"?: csstype.Property.InlineSize | undefined; "input-security"?: csstype.Property.InputSecurity | undefined; "inset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "inset-block-start"?: csstype.Property.InsetBlockStart | undefined; "inset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "inset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "justify-content"?: csstype.Property.JustifyContent | undefined; "justify-items"?: csstype.Property.JustifyItems | undefined; "justify-self"?: csstype.Property.JustifySelf | undefined; "justify-tracks"?: csstype.Property.JustifyTracks | undefined; "letter-spacing"?: csstype.Property.LetterSpacing | undefined; "line-break"?: csstype.Property.LineBreak | undefined; "line-height"?: csstype.Property.LineHeight | undefined; "line-height-step"?: csstype.Property.LineHeightStep | undefined; "list-style-image"?: csstype.Property.ListStyleImage | undefined; "list-style-position"?: csstype.Property.ListStylePosition | undefined; "list-style-type"?: csstype.Property.ListStyleType | undefined; "margin-block-end"?: csstype.Property.MarginBlockEnd | undefined; "margin-block-start"?: csstype.Property.MarginBlockStart | undefined; "margin-bottom"?: csstype.Property.MarginBottom | undefined; "margin-inline-end"?: csstype.Property.MarginInlineEnd | undefined; "margin-inline-start"?: csstype.Property.MarginInlineStart | undefined; "margin-left"?: csstype.Property.MarginLeft | undefined; "margin-right"?: csstype.Property.MarginRight | undefined; "margin-top"?: csstype.Property.MarginTop | undefined; "margin-trim"?: csstype.Property.MarginTrim | undefined; "mask-border-mode"?: csstype.Property.MaskBorderMode | undefined; "mask-border-outset"?: csstype.Property.MaskBorderOutset | undefined; "mask-border-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "mask-border-slice"?: csstype.Property.MaskBorderSlice | undefined; "mask-border-source"?: csstype.Property.MaskBorderSource | undefined; "mask-border-width"?: csstype.Property.MaskBorderWidth | undefined; "mask-clip"?: csstype.Property.MaskClip | undefined; "mask-composite"?: csstype.Property.MaskComposite | undefined; "mask-image"?: csstype.Property.MaskImage | undefined; "mask-mode"?: csstype.Property.MaskMode | undefined; "mask-origin"?: csstype.Property.MaskOrigin | undefined; "mask-position"?: csstype.Property.MaskPosition | undefined; "mask-repeat"?: csstype.Property.MaskRepeat | undefined; "mask-size"?: csstype.Property.MaskSize | undefined; "mask-type"?: csstype.Property.MaskType | undefined; "masonry-auto-flow"?: csstype.Property.MasonryAutoFlow | undefined; "math-depth"?: csstype.Property.MathDepth | undefined; "math-shift"?: csstype.Property.MathShift | undefined; "math-style"?: csstype.Property.MathStyle | undefined; "max-block-size"?: csstype.Property.MaxBlockSize | undefined; "max-height"?: csstype.Property.MaxHeight | undefined; "max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "max-lines"?: csstype.Property.MaxLines | undefined; "max-width"?: csstype.Property.MaxWidth | undefined; "min-block-size"?: csstype.Property.MinBlockSize | undefined; "min-height"?: csstype.Property.MinHeight | undefined; "min-inline-size"?: csstype.Property.MinInlineSize | undefined; "min-width"?: csstype.Property.MinWidth | undefined; "mix-blend-mode"?: csstype.Property.MixBlendMode | undefined; "motion-distance"?: csstype.Property.OffsetDistance | undefined; "motion-path"?: csstype.Property.OffsetPath | undefined; "motion-rotation"?: csstype.Property.OffsetRotate | undefined; "object-fit"?: csstype.Property.ObjectFit | undefined; "object-position"?: csstype.Property.ObjectPosition | undefined; "offset-anchor"?: csstype.Property.OffsetAnchor | undefined; "offset-distance"?: csstype.Property.OffsetDistance | undefined; "offset-path"?: csstype.Property.OffsetPath | undefined; "offset-position"?: csstype.Property.OffsetPosition | undefined; "offset-rotate"?: csstype.Property.OffsetRotate | undefined; "offset-rotation"?: csstype.Property.OffsetRotate | undefined; "outline-color"?: csstype.Property.OutlineColor | undefined; "outline-offset"?: csstype.Property.OutlineOffset | undefined; "outline-style"?: csstype.Property.OutlineStyle | undefined; "outline-width"?: csstype.Property.OutlineWidth | undefined; "overflow-anchor"?: csstype.Property.OverflowAnchor | undefined; "overflow-block"?: csstype.Property.OverflowBlock | undefined; "overflow-clip-box"?: csstype.Property.OverflowClipBox | undefined; "overflow-clip-margin"?: csstype.Property.OverflowClipMargin | undefined; "overflow-inline"?: csstype.Property.OverflowInline | undefined; "overflow-wrap"?: csstype.Property.OverflowWrap | undefined; "overflow-x"?: csstype.Property.OverflowX | undefined; "overflow-y"?: csstype.Property.OverflowY | undefined; "overscroll-behavior-block"?: csstype.Property.OverscrollBehaviorBlock | undefined; "overscroll-behavior-inline"?: csstype.Property.OverscrollBehaviorInline | undefined; "overscroll-behavior-x"?: csstype.Property.OverscrollBehaviorX | undefined; "overscroll-behavior-y"?: csstype.Property.OverscrollBehaviorY | undefined; "padding-block-end"?: csstype.Property.PaddingBlockEnd | undefined; "padding-block-start"?: csstype.Property.PaddingBlockStart | undefined; "padding-bottom"?: csstype.Property.PaddingBottom | undefined; "padding-inline-end"?: csstype.Property.PaddingInlineEnd | undefined; "padding-inline-start"?: csstype.Property.PaddingInlineStart | undefined; "padding-left"?: csstype.Property.PaddingLeft | undefined; "padding-right"?: csstype.Property.PaddingRight | undefined; "padding-top"?: csstype.Property.PaddingTop | undefined; "page-break-after"?: csstype.Property.PageBreakAfter | undefined; "page-break-before"?: csstype.Property.PageBreakBefore | undefined; "page-break-inside"?: csstype.Property.PageBreakInside | undefined; "paint-order"?: csstype.Property.PaintOrder | undefined; "perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "pointer-events"?: csstype.Property.PointerEvents | undefined; "print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "row-gap"?: csstype.Property.RowGap | undefined; "ruby-align"?: csstype.Property.RubyAlign | undefined; "ruby-merge"?: csstype.Property.RubyMerge | undefined; "ruby-position"?: csstype.Property.RubyPosition | undefined; "scroll-behavior"?: csstype.Property.ScrollBehavior | undefined; "scroll-margin-block-end"?: csstype.Property.ScrollMarginBlockEnd | undefined; "scroll-margin-block-start"?: csstype.Property.ScrollMarginBlockStart | undefined; "scroll-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-margin-inline-end"?: csstype.Property.ScrollMarginInlineEnd | undefined; "scroll-margin-inline-start"?: csstype.Property.ScrollMarginInlineStart | undefined; "scroll-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-padding-block-end"?: csstype.Property.ScrollPaddingBlockEnd | undefined; "scroll-padding-block-start"?: csstype.Property.ScrollPaddingBlockStart | undefined; "scroll-padding-bottom"?: csstype.Property.ScrollPaddingBottom | undefined; "scroll-padding-inline-end"?: csstype.Property.ScrollPaddingInlineEnd | undefined; "scroll-padding-inline-start"?: csstype.Property.ScrollPaddingInlineStart | undefined; "scroll-padding-left"?: csstype.Property.ScrollPaddingLeft | undefined; "scroll-padding-right"?: csstype.Property.ScrollPaddingRight | undefined; "scroll-padding-top"?: csstype.Property.ScrollPaddingTop | undefined; "scroll-snap-align"?: csstype.Property.ScrollSnapAlign | undefined; "scroll-snap-margin-bottom"?: csstype.Property.ScrollMarginBottom | undefined; "scroll-snap-margin-left"?: csstype.Property.ScrollMarginLeft | undefined; "scroll-snap-margin-right"?: csstype.Property.ScrollMarginRight | undefined; "scroll-snap-margin-top"?: csstype.Property.ScrollMarginTop | undefined; "scroll-snap-stop"?: csstype.Property.ScrollSnapStop | undefined; "scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "scroll-timeline-axis"?: csstype.Property.ScrollTimelineAxis | undefined; "scroll-timeline-name"?: csstype.Property.ScrollTimelineName | undefined; "scrollbar-color"?: csstype.Property.ScrollbarColor | undefined; "scrollbar-gutter"?: csstype.Property.ScrollbarGutter | undefined; "scrollbar-width"?: csstype.Property.ScrollbarWidth | undefined; "shape-image-threshold"?: csstype.Property.ShapeImageThreshold | undefined; "shape-margin"?: csstype.Property.ShapeMargin | undefined; "shape-outside"?: csstype.Property.ShapeOutside | undefined; "tab-size"?: csstype.Property.TabSize | undefined; "table-layout"?: csstype.Property.TableLayout | undefined; "text-align"?: csstype.Property.TextAlign | undefined; "text-align-last"?: csstype.Property.TextAlignLast | undefined; "text-combine-upright"?: csstype.Property.TextCombineUpright | undefined; "text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "text-decoration-skip-ink"?: csstype.Property.TextDecorationSkipInk | undefined; "text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "text-decoration-thickness"?: csstype.Property.TextDecorationThickness | undefined; "text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "text-indent"?: csstype.Property.TextIndent | undefined; "text-justify"?: csstype.Property.TextJustify | undefined; "text-orientation"?: csstype.Property.TextOrientation | undefined; "text-overflow"?: csstype.Property.TextOverflow | undefined; "text-rendering"?: csstype.Property.TextRendering | undefined; "text-shadow"?: csstype.Property.TextShadow | undefined; "text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "text-transform"?: csstype.Property.TextTransform | undefined; "text-underline-offset"?: csstype.Property.TextUnderlineOffset | undefined; "text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "text-wrap"?: csstype.Property.TextWrap | undefined; "timeline-scope"?: csstype.Property.TimelineScope | undefined; "touch-action"?: csstype.Property.TouchAction | undefined; "transform-box"?: csstype.Property.TransformBox | undefined; "transform-origin"?: csstype.Property.TransformOrigin | undefined; "transform-style"?: csstype.Property.TransformStyle | undefined; "transition-behavior"?: csstype.Property.TransitionBehavior | undefined; "transition-delay"?: csstype.Property.TransitionDelay | undefined; "transition-duration"?: csstype.Property.TransitionDuration | undefined; "transition-property"?: csstype.Property.TransitionProperty | undefined; "transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "unicode-bidi"?: csstype.Property.UnicodeBidi | undefined; "user-select"?: csstype.Property.UserSelect | undefined; "vertical-align"?: csstype.Property.VerticalAlign | undefined; "view-timeline-axis"?: csstype.Property.ViewTimelineAxis | undefined; "view-timeline-inset"?: csstype.Property.ViewTimelineInset | undefined; "view-timeline-name"?: csstype.Property.ViewTimelineName | undefined; "view-transition-name"?: csstype.Property.ViewTransitionName | undefined; "white-space"?: csstype.Property.WhiteSpace | undefined; "white-space-collapse"?: csstype.Property.WhiteSpaceCollapse | undefined; "white-space-trim"?: csstype.Property.WhiteSpaceTrim | undefined; "will-change"?: csstype.Property.WillChange | undefined; "word-break"?: csstype.Property.WordBreak | undefined; "word-spacing"?: csstype.Property.WordSpacing | undefined; "word-wrap"?: csstype.Property.WordWrap | undefined; "writing-mode"?: csstype.Property.WritingMode | undefined; "z-index"?: csstype.Property.ZIndex | undefined; "animation-range"?: csstype.Property.AnimationRange | undefined; "background-position"?: csstype.Property.BackgroundPosition | undefined; "border-block"?: csstype.Property.BorderBlock | undefined; "border-block-end"?: csstype.Property.BorderBlockEnd | undefined; "border-block-start"?: csstype.Property.BorderBlockStart | undefined; "border-bottom"?: csstype.Property.BorderBottom | undefined; "border-color"?: csstype.Property.BorderColor | undefined; "border-image"?: csstype.Property.BorderImage | undefined; "border-inline"?: csstype.Property.BorderInline | undefined; "border-inline-end"?: csstype.Property.BorderInlineEnd | undefined; "border-inline-start"?: csstype.Property.BorderInlineStart | undefined; "border-left"?: csstype.Property.BorderLeft | undefined; "border-radius"?: csstype.Property.BorderRadius | undefined; "border-right"?: csstype.Property.BorderRight | undefined; "border-style"?: csstype.Property.BorderStyle | undefined; "border-top"?: csstype.Property.BorderTop | undefined; "border-width"?: csstype.Property.BorderWidth | undefined; "column-rule"?: csstype.Property.ColumnRule | undefined; "contain-intrinsic-size"?: csstype.Property.ContainIntrinsicSize | undefined; "flex-flow"?: csstype.Property.FlexFlow | undefined; "grid-area"?: csstype.Property.GridArea | undefined; "grid-column"?: csstype.Property.GridColumn | undefined; "grid-row"?: csstype.Property.GridRow | undefined; "grid-template"?: csstype.Property.GridTemplate | undefined; "inset-block"?: csstype.Property.InsetBlock | undefined; "inset-inline"?: csstype.Property.InsetInline | undefined; "line-clamp"?: csstype.Property.LineClamp | undefined; "list-style"?: csstype.Property.ListStyle | undefined; "margin-block"?: csstype.Property.MarginBlock | undefined; "margin-inline"?: csstype.Property.MarginInline | undefined; "mask-border"?: csstype.Property.MaskBorder | undefined; "overscroll-behavior"?: csstype.Property.OverscrollBehavior | undefined; "padding-block"?: csstype.Property.PaddingBlock | undefined; "padding-inline"?: csstype.Property.PaddingInline | undefined; "place-content"?: csstype.Property.PlaceContent | undefined; "place-items"?: csstype.Property.PlaceItems | undefined; "place-self"?: csstype.Property.PlaceSelf | undefined; "scroll-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-margin-block"?: csstype.Property.ScrollMarginBlock | undefined; "scroll-margin-inline"?: csstype.Property.ScrollMarginInline | undefined; "scroll-padding"?: csstype.Property.ScrollPadding | undefined; "scroll-padding-block"?: csstype.Property.ScrollPaddingBlock | undefined; "scroll-padding-inline"?: csstype.Property.ScrollPaddingInline | undefined; "scroll-snap-margin"?: csstype.Property.ScrollMargin | undefined; "scroll-timeline"?: csstype.Property.ScrollTimeline | undefined; "text-decoration"?: csstype.Property.TextDecoration | undefined; "text-emphasis"?: csstype.Property.TextEmphasis | undefined; "view-timeline"?: csstype.Property.ViewTimeline | undefined; "-moz-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-moz-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-moz-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-moz-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-moz-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-moz-animation-name"?: csstype.Property.AnimationName | undefined; "-moz-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-moz-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-moz-appearance"?: csstype.Property.MozAppearance | undefined; "-moz-binding"?: csstype.Property.MozBinding | undefined; "-moz-border-bottom-colors"?: csstype.Property.MozBorderBottomColors | undefined; "-moz-border-end-color"?: csstype.Property.BorderInlineEndColor | undefined; "-moz-border-end-style"?: csstype.Property.BorderInlineEndStyle | undefined; "-moz-border-end-width"?: csstype.Property.BorderInlineEndWidth | undefined; "-moz-border-left-colors"?: csstype.Property.MozBorderLeftColors | undefined; "-moz-border-right-colors"?: csstype.Property.MozBorderRightColors | undefined; "-moz-border-start-color"?: csstype.Property.BorderInlineStartColor | undefined; "-moz-border-start-style"?: csstype.Property.BorderInlineStartStyle | undefined; "-moz-border-top-colors"?: csstype.Property.MozBorderTopColors | undefined; "-moz-box-sizing"?: csstype.Property.BoxSizing | undefined; "-moz-column-count"?: csstype.Property.ColumnCount | undefined; "-moz-column-fill"?: csstype.Property.ColumnFill | undefined; "-moz-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-moz-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-moz-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-moz-column-width"?: csstype.Property.ColumnWidth | undefined; "-moz-context-properties"?: csstype.Property.MozContextProperties | undefined; "-moz-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-moz-font-language-override"?: csstype.Property.FontLanguageOverride | undefined; "-moz-hyphens"?: csstype.Property.Hyphens | undefined; "-moz-image-region"?: csstype.Property.MozImageRegion | undefined; "-moz-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-moz-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-moz-orient"?: csstype.Property.MozOrient | undefined; "-moz-osx-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-moz-outline-radius-bottomleft"?: csstype.Property.MozOutlineRadiusBottomleft | undefined; "-moz-outline-radius-bottomright"?: csstype.Property.MozOutlineRadiusBottomright | undefined; "-moz-outline-radius-topleft"?: csstype.Property.MozOutlineRadiusTopleft | undefined; "-moz-outline-radius-topright"?: csstype.Property.MozOutlineRadiusTopright | undefined; "-moz-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-moz-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-moz-stack-sizing"?: csstype.Property.MozStackSizing | undefined; "-moz-tab-size"?: csstype.Property.TabSize | undefined; "-moz-text-blink"?: csstype.Property.MozTextBlink | undefined; "-moz-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-moz-user-focus"?: csstype.Property.MozUserFocus | undefined; "-moz-user-modify"?: csstype.Property.MozUserModify | undefined; "-moz-user-select"?: csstype.Property.UserSelect | undefined; "-moz-window-dragging"?: csstype.Property.MozWindowDragging | undefined; "-moz-window-shadow"?: csstype.Property.MozWindowShadow | undefined; "-ms-accelerator"?: csstype.Property.MsAccelerator | undefined; "-ms-block-progression"?: csstype.Property.MsBlockProgression | undefined; "-ms-content-zoom-chaining"?: csstype.Property.MsContentZoomChaining | undefined; "-ms-content-zoom-limit-max"?: csstype.Property.MsContentZoomLimitMax | undefined; "-ms-content-zoom-limit-min"?: csstype.Property.MsContentZoomLimitMin | undefined; "-ms-content-zoom-snap-points"?: csstype.Property.MsContentZoomSnapPoints | undefined; "-ms-content-zoom-snap-type"?: csstype.Property.MsContentZoomSnapType | undefined; "-ms-content-zooming"?: csstype.Property.MsContentZooming | undefined; "-ms-filter"?: csstype.Property.MsFilter | undefined; "-ms-flex-direction"?: csstype.Property.FlexDirection | undefined; "-ms-flex-positive"?: csstype.Property.FlexGrow | undefined; "-ms-flow-from"?: csstype.Property.MsFlowFrom | undefined; "-ms-flow-into"?: csstype.Property.MsFlowInto | undefined; "-ms-grid-columns"?: csstype.Property.MsGridColumns | undefined; "-ms-grid-rows"?: csstype.Property.MsGridRows | undefined; "-ms-high-contrast-adjust"?: csstype.Property.MsHighContrastAdjust | undefined; "-ms-hyphenate-limit-chars"?: csstype.Property.MsHyphenateLimitChars | undefined; "-ms-hyphenate-limit-lines"?: csstype.Property.MsHyphenateLimitLines | undefined; "-ms-hyphenate-limit-zone"?: csstype.Property.MsHyphenateLimitZone | undefined; "-ms-hyphens"?: csstype.Property.Hyphens | undefined; "-ms-ime-align"?: csstype.Property.MsImeAlign | undefined; "-ms-line-break"?: csstype.Property.LineBreak | undefined; "-ms-order"?: csstype.Property.Order | undefined; "-ms-overflow-style"?: csstype.Property.MsOverflowStyle | undefined; "-ms-overflow-x"?: csstype.Property.OverflowX | undefined; "-ms-overflow-y"?: csstype.Property.OverflowY | undefined; "-ms-scroll-chaining"?: csstype.Property.MsScrollChaining | undefined; "-ms-scroll-limit-x-max"?: csstype.Property.MsScrollLimitXMax | undefined; "-ms-scroll-limit-x-min"?: csstype.Property.MsScrollLimitXMin | undefined; "-ms-scroll-limit-y-max"?: csstype.Property.MsScrollLimitYMax | undefined; "-ms-scroll-limit-y-min"?: csstype.Property.MsScrollLimitYMin | undefined; "-ms-scroll-rails"?: csstype.Property.MsScrollRails | undefined; "-ms-scroll-snap-points-x"?: csstype.Property.MsScrollSnapPointsX | undefined; "-ms-scroll-snap-points-y"?: csstype.Property.MsScrollSnapPointsY | undefined; "-ms-scroll-snap-type"?: csstype.Property.MsScrollSnapType | undefined; "-ms-scroll-translation"?: csstype.Property.MsScrollTranslation | undefined; "-ms-scrollbar-3dlight-color"?: csstype.Property.MsScrollbar3dlightColor | undefined; "-ms-scrollbar-arrow-color"?: csstype.Property.MsScrollbarArrowColor | undefined; "-ms-scrollbar-base-color"?: csstype.Property.MsScrollbarBaseColor | undefined; "-ms-scrollbar-darkshadow-color"?: csstype.Property.MsScrollbarDarkshadowColor | undefined; "-ms-scrollbar-face-color"?: csstype.Property.MsScrollbarFaceColor | undefined; "-ms-scrollbar-highlight-color"?: csstype.Property.MsScrollbarHighlightColor | undefined; "-ms-scrollbar-shadow-color"?: csstype.Property.MsScrollbarShadowColor | undefined; "-ms-scrollbar-track-color"?: csstype.Property.MsScrollbarTrackColor | undefined; "-ms-text-autospace"?: csstype.Property.MsTextAutospace | undefined; "-ms-text-combine-horizontal"?: csstype.Property.TextCombineUpright | undefined; "-ms-text-overflow"?: csstype.Property.TextOverflow | undefined; "-ms-touch-action"?: csstype.Property.TouchAction | undefined; "-ms-touch-select"?: csstype.Property.MsTouchSelect | undefined; "-ms-transform"?: csstype.Property.Transform | undefined; "-ms-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-ms-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-ms-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-ms-transition-property"?: csstype.Property.TransitionProperty | undefined; "-ms-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-ms-user-select"?: csstype.Property.MsUserSelect | undefined; "-ms-word-break"?: csstype.Property.WordBreak | undefined; "-ms-wrap-flow"?: csstype.Property.MsWrapFlow | undefined; "-ms-wrap-margin"?: csstype.Property.MsWrapMargin | undefined; "-ms-wrap-through"?: csstype.Property.MsWrapThrough | undefined; "-ms-writing-mode"?: csstype.Property.WritingMode | undefined; "-webkit-align-content"?: csstype.Property.AlignContent | undefined; "-webkit-align-items"?: csstype.Property.AlignItems | undefined; "-webkit-align-self"?: csstype.Property.AlignSelf | undefined; "-webkit-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-webkit-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-webkit-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-webkit-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-webkit-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-webkit-animation-name"?: csstype.Property.AnimationName | undefined; "-webkit-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-webkit-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-webkit-appearance"?: csstype.Property.WebkitAppearance | undefined; "-webkit-backdrop-filter"?: csstype.Property.BackdropFilter | undefined; "-webkit-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-webkit-background-clip"?: csstype.Property.BackgroundClip | undefined; "-webkit-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-webkit-background-size"?: csstype.Property.BackgroundSize | undefined; "-webkit-border-before-color"?: csstype.Property.WebkitBorderBeforeColor | undefined; "-webkit-border-before-style"?: csstype.Property.WebkitBorderBeforeStyle | undefined; "-webkit-border-before-width"?: csstype.Property.WebkitBorderBeforeWidth | undefined; "-webkit-border-bottom-left-radius"?: csstype.Property.BorderBottomLeftRadius | undefined; "-webkit-border-bottom-right-radius"?: csstype.Property.BorderBottomRightRadius | undefined; "-webkit-border-image-slice"?: csstype.Property.BorderImageSlice | undefined; "-webkit-border-top-left-radius"?: csstype.Property.BorderTopLeftRadius | undefined; "-webkit-border-top-right-radius"?: csstype.Property.BorderTopRightRadius | undefined; "-webkit-box-decoration-break"?: csstype.Property.BoxDecorationBreak | undefined; "-webkit-box-reflect"?: csstype.Property.WebkitBoxReflect | undefined; "-webkit-box-shadow"?: csstype.Property.BoxShadow | undefined; "-webkit-box-sizing"?: csstype.Property.BoxSizing | undefined; "-webkit-clip-path"?: csstype.Property.ClipPath | undefined; "-webkit-column-count"?: csstype.Property.ColumnCount | undefined; "-webkit-column-fill"?: csstype.Property.ColumnFill | undefined; "-webkit-column-rule-color"?: csstype.Property.ColumnRuleColor | undefined; "-webkit-column-rule-style"?: csstype.Property.ColumnRuleStyle | undefined; "-webkit-column-rule-width"?: csstype.Property.ColumnRuleWidth | undefined; "-webkit-column-span"?: csstype.Property.ColumnSpan | undefined; "-webkit-column-width"?: csstype.Property.ColumnWidth | undefined; "-webkit-filter"?: csstype.Property.Filter | undefined; "-webkit-flex-basis"?: csstype.Property.FlexBasis | undefined; "-webkit-flex-direction"?: csstype.Property.FlexDirection | undefined; "-webkit-flex-grow"?: csstype.Property.FlexGrow | undefined; "-webkit-flex-shrink"?: csstype.Property.FlexShrink | undefined; "-webkit-flex-wrap"?: csstype.Property.FlexWrap | undefined; "-webkit-font-feature-settings"?: csstype.Property.FontFeatureSettings | undefined; "-webkit-font-kerning"?: csstype.Property.FontKerning | undefined; "-webkit-font-smoothing"?: csstype.Property.FontSmooth | undefined; "-webkit-font-variant-ligatures"?: csstype.Property.FontVariantLigatures | undefined; "-webkit-hyphenate-character"?: csstype.Property.HyphenateCharacter | undefined; "-webkit-hyphens"?: csstype.Property.Hyphens | undefined; "-webkit-initial-letter"?: csstype.Property.InitialLetter | undefined; "-webkit-justify-content"?: csstype.Property.JustifyContent | undefined; "-webkit-line-break"?: csstype.Property.LineBreak | undefined; "-webkit-line-clamp"?: csstype.Property.WebkitLineClamp | undefined; "-webkit-margin-end"?: csstype.Property.MarginInlineEnd | undefined; "-webkit-margin-start"?: csstype.Property.MarginInlineStart | undefined; "-webkit-mask-attachment"?: csstype.Property.WebkitMaskAttachment | undefined; "-webkit-mask-box-image-outset"?: csstype.Property.MaskBorderOutset | undefined; "-webkit-mask-box-image-repeat"?: csstype.Property.MaskBorderRepeat | undefined; "-webkit-mask-box-image-slice"?: csstype.Property.MaskBorderSlice | undefined; "-webkit-mask-box-image-source"?: csstype.Property.MaskBorderSource | undefined; "-webkit-mask-box-image-width"?: csstype.Property.MaskBorderWidth | undefined; "-webkit-mask-clip"?: csstype.Property.WebkitMaskClip | undefined; "-webkit-mask-composite"?: csstype.Property.WebkitMaskComposite | undefined; "-webkit-mask-image"?: csstype.Property.WebkitMaskImage | undefined; "-webkit-mask-origin"?: csstype.Property.WebkitMaskOrigin | undefined; "-webkit-mask-position"?: csstype.Property.WebkitMaskPosition | undefined; "-webkit-mask-position-x"?: csstype.Property.WebkitMaskPositionX | undefined; "-webkit-mask-position-y"?: csstype.Property.WebkitMaskPositionY | undefined; "-webkit-mask-repeat"?: csstype.Property.WebkitMaskRepeat | undefined; "-webkit-mask-repeat-x"?: csstype.Property.WebkitMaskRepeatX | undefined; "-webkit-mask-repeat-y"?: csstype.Property.WebkitMaskRepeatY | undefined; "-webkit-mask-size"?: csstype.Property.WebkitMaskSize | undefined; "-webkit-max-inline-size"?: csstype.Property.MaxInlineSize | undefined; "-webkit-order"?: csstype.Property.Order | undefined; "-webkit-overflow-scrolling"?: csstype.Property.WebkitOverflowScrolling | undefined; "-webkit-padding-end"?: csstype.Property.PaddingInlineEnd | undefined; "-webkit-padding-start"?: csstype.Property.PaddingInlineStart | undefined; "-webkit-perspective"?: csstype.Property.Perspective | undefined; "-webkit-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-webkit-print-color-adjust"?: csstype.Property.PrintColorAdjust | undefined; "-webkit-ruby-position"?: csstype.Property.RubyPosition | undefined; "-webkit-scroll-snap-type"?: csstype.Property.ScrollSnapType | undefined; "-webkit-shape-margin"?: csstype.Property.ShapeMargin | undefined; "-webkit-tap-highlight-color"?: csstype.Property.WebkitTapHighlightColor | undefined; "-webkit-text-combine"?: csstype.Property.TextCombineUpright | undefined; "-webkit-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-webkit-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-webkit-text-decoration-skip"?: csstype.Property.TextDecorationSkip | undefined; "-webkit-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-webkit-text-emphasis-color"?: csstype.Property.TextEmphasisColor | undefined; "-webkit-text-emphasis-position"?: csstype.Property.TextEmphasisPosition | undefined; "-webkit-text-emphasis-style"?: csstype.Property.TextEmphasisStyle | undefined; "-webkit-text-fill-color"?: csstype.Property.WebkitTextFillColor | undefined; "-webkit-text-orientation"?: csstype.Property.TextOrientation | undefined; "-webkit-text-size-adjust"?: csstype.Property.TextSizeAdjust | undefined; "-webkit-text-stroke-color"?: csstype.Property.WebkitTextStrokeColor | undefined; "-webkit-text-stroke-width"?: csstype.Property.WebkitTextStrokeWidth | undefined; "-webkit-text-underline-position"?: csstype.Property.TextUnderlinePosition | undefined; "-webkit-touch-callout"?: csstype.Property.WebkitTouchCallout | undefined; "-webkit-transform"?: csstype.Property.Transform | undefined; "-webkit-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-webkit-transform-style"?: csstype.Property.TransformStyle | undefined; "-webkit-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-webkit-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-webkit-transition-property"?: csstype.Property.TransitionProperty | undefined; "-webkit-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-user-modify"?: csstype.Property.WebkitUserModify | undefined; "-webkit-user-select"?: csstype.Property.UserSelect | undefined; "-webkit-writing-mode"?: csstype.Property.WritingMode | undefined; "-moz-animation"?: csstype.Property.Animation | undefined; "-moz-border-image"?: csstype.Property.BorderImage | undefined; "-moz-column-rule"?: csstype.Property.ColumnRule | undefined; "-moz-columns"?: csstype.Property.Columns | undefined; "-moz-outline-radius"?: csstype.Property.MozOutlineRadius | undefined; "-ms-content-zoom-limit"?: csstype.Property.MsContentZoomLimit | undefined; "-ms-content-zoom-snap"?: csstype.Property.MsContentZoomSnap | undefined; "-ms-flex"?: csstype.Property.Flex | undefined; "-ms-scroll-limit"?: csstype.Property.MsScrollLimit | undefined; "-ms-scroll-snap-x"?: csstype.Property.MsScrollSnapX | undefined; "-ms-scroll-snap-y"?: csstype.Property.MsScrollSnapY | undefined; "-ms-transition"?: csstype.Property.Transition | undefined; "-webkit-animation"?: csstype.Property.Animation | undefined; "-webkit-border-before"?: csstype.Property.WebkitBorderBefore | undefined; "-webkit-border-image"?: csstype.Property.BorderImage | undefined; "-webkit-border-radius"?: csstype.Property.BorderRadius | undefined; "-webkit-column-rule"?: csstype.Property.ColumnRule | undefined; "-webkit-columns"?: csstype.Property.Columns | undefined; "-webkit-flex"?: csstype.Property.Flex | undefined; "-webkit-flex-flow"?: csstype.Property.FlexFlow | undefined; "-webkit-mask"?: csstype.Property.WebkitMask | undefined; "-webkit-mask-box-image"?: csstype.Property.MaskBorder | undefined; "-webkit-text-emphasis"?: csstype.Property.TextEmphasis | undefined; "-webkit-text-stroke"?: csstype.Property.WebkitTextStroke | undefined; "-webkit-transition"?: csstype.Property.Transition | undefined; "box-align"?: csstype.Property.BoxAlign | undefined; "box-direction"?: csstype.Property.BoxDirection | undefined; "box-flex"?: csstype.Property.BoxFlex | undefined; "box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "box-lines"?: csstype.Property.BoxLines | undefined; "box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "box-orient"?: csstype.Property.BoxOrient | undefined; "box-pack"?: csstype.Property.BoxPack | undefined; "grid-column-gap"?: csstype.Property.GridColumnGap | undefined; "grid-gap"?: csstype.Property.GridGap | undefined; "grid-row-gap"?: csstype.Property.GridRowGap | undefined; "ime-mode"?: csstype.Property.ImeMode | undefined; "offset-block"?: csstype.Property.InsetBlock | undefined; "offset-block-end"?: csstype.Property.InsetBlockEnd | undefined; "offset-block-start"?: csstype.Property.InsetBlockStart | undefined; "offset-inline"?: csstype.Property.InsetInline | undefined; "offset-inline-end"?: csstype.Property.InsetInlineEnd | undefined; "offset-inline-start"?: csstype.Property.InsetInlineStart | undefined; "scroll-snap-coordinate"?: csstype.Property.ScrollSnapCoordinate | undefined; "scroll-snap-destination"?: csstype.Property.ScrollSnapDestination | undefined; "scroll-snap-points-x"?: csstype.Property.ScrollSnapPointsX | undefined; "scroll-snap-points-y"?: csstype.Property.ScrollSnapPointsY | undefined; "scroll-snap-type-x"?: csstype.Property.ScrollSnapTypeX | undefined; "scroll-snap-type-y"?: csstype.Property.ScrollSnapTypeY | undefined; "-khtml-box-align"?: csstype.Property.BoxAlign | undefined; "-khtml-box-direction"?: csstype.Property.BoxDirection | undefined; "-khtml-box-flex"?: csstype.Property.BoxFlex | undefined; "-khtml-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-khtml-box-lines"?: csstype.Property.BoxLines | undefined; "-khtml-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-khtml-box-orient"?: csstype.Property.BoxOrient | undefined; "-khtml-box-pack"?: csstype.Property.BoxPack | undefined; "-khtml-line-break"?: csstype.Property.LineBreak | undefined; "-khtml-opacity"?: csstype.Property.Opacity | undefined; "-khtml-user-select"?: csstype.Property.UserSelect | undefined; "-moz-backface-visibility"?: csstype.Property.BackfaceVisibility | undefined; "-moz-background-clip"?: csstype.Property.BackgroundClip | undefined; "-moz-background-inline-policy"?: csstype.Property.BoxDecorationBreak | undefined; "-moz-background-origin"?: csstype.Property.BackgroundOrigin | undefined; "-moz-background-size"?: csstype.Property.BackgroundSize | undefined; "-moz-border-radius"?: csstype.Property.BorderRadius | undefined; "-moz-border-radius-bottomleft"?: csstype.Property.BorderBottomLeftRadius | undefined; "-moz-border-radius-bottomright"?: csstype.Property.BorderBottomRightRadius | undefined; "-moz-border-radius-topleft"?: csstype.Property.BorderTopLeftRadius | undefined; "-moz-border-radius-topright"?: csstype.Property.BorderTopRightRadius | undefined; "-moz-box-align"?: csstype.Property.BoxAlign | undefined; "-moz-box-direction"?: csstype.Property.BoxDirection | undefined; "-moz-box-flex"?: csstype.Property.BoxFlex | undefined; "-moz-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-moz-box-orient"?: csstype.Property.BoxOrient | undefined; "-moz-box-pack"?: csstype.Property.BoxPack | undefined; "-moz-box-shadow"?: csstype.Property.BoxShadow | undefined; "-moz-float-edge"?: csstype.Property.MozFloatEdge | undefined; "-moz-force-broken-image-icon"?: csstype.Property.MozForceBrokenImageIcon | undefined; "-moz-opacity"?: csstype.Property.Opacity | undefined; "-moz-outline"?: csstype.Property.Outline | undefined; "-moz-outline-color"?: csstype.Property.OutlineColor | undefined; "-moz-outline-style"?: csstype.Property.OutlineStyle | undefined; "-moz-outline-width"?: csstype.Property.OutlineWidth | undefined; "-moz-perspective"?: csstype.Property.Perspective | undefined; "-moz-perspective-origin"?: csstype.Property.PerspectiveOrigin | undefined; "-moz-text-align-last"?: csstype.Property.TextAlignLast | undefined; "-moz-text-decoration-color"?: csstype.Property.TextDecorationColor | undefined; "-moz-text-decoration-line"?: csstype.Property.TextDecorationLine | undefined; "-moz-text-decoration-style"?: csstype.Property.TextDecorationStyle | undefined; "-moz-transform"?: csstype.Property.Transform | undefined; "-moz-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-moz-transform-style"?: csstype.Property.TransformStyle | undefined; "-moz-transition"?: csstype.Property.Transition | undefined; "-moz-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-moz-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-moz-transition-property"?: csstype.Property.TransitionProperty | undefined; "-moz-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-moz-user-input"?: csstype.Property.MozUserInput | undefined; "-ms-ime-mode"?: csstype.Property.ImeMode | undefined; "-o-animation"?: csstype.Property.Animation | undefined; "-o-animation-delay"?: csstype.Property.AnimationDelay | undefined; "-o-animation-direction"?: csstype.Property.AnimationDirection | undefined; "-o-animation-duration"?: csstype.Property.AnimationDuration | undefined; "-o-animation-fill-mode"?: csstype.Property.AnimationFillMode | undefined; "-o-animation-iteration-count"?: csstype.Property.AnimationIterationCount | undefined; "-o-animation-name"?: csstype.Property.AnimationName | undefined; "-o-animation-play-state"?: csstype.Property.AnimationPlayState | undefined; "-o-animation-timing-function"?: csstype.Property.AnimationTimingFunction | undefined; "-o-background-size"?: csstype.Property.BackgroundSize | undefined; "-o-border-image"?: csstype.Property.BorderImage | undefined; "-o-object-fit"?: csstype.Property.ObjectFit | undefined; "-o-object-position"?: csstype.Property.ObjectPosition | undefined; "-o-tab-size"?: csstype.Property.TabSize | undefined; "-o-text-overflow"?: csstype.Property.TextOverflow | undefined; "-o-transform"?: csstype.Property.Transform | undefined; "-o-transform-origin"?: csstype.Property.TransformOrigin | undefined; "-o-transition"?: csstype.Property.Transition | undefined; "-o-transition-delay"?: csstype.Property.TransitionDelay | undefined; "-o-transition-duration"?: csstype.Property.TransitionDuration | undefined; "-o-transition-property"?: csstype.Property.TransitionProperty | undefined; "-o-transition-timing-function"?: csstype.Property.TransitionTimingFunction | undefined; "-webkit-box-align"?: csstype.Property.BoxAlign | undefined; "-webkit-box-direction"?: csstype.Property.BoxDirection | undefined; "-webkit-box-flex"?: csstype.Property.BoxFlex | undefined; "-webkit-box-flex-group"?: csstype.Property.BoxFlexGroup | undefined; "-webkit-box-lines"?: csstype.Property.BoxLines | undefined; "-webkit-box-ordinal-group"?: csstype.Property.BoxOrdinalGroup | undefined; "-webkit-box-orient"?: csstype.Property.BoxOrient | undefined; "-webkit-box-pack"?: csstype.Property.BoxPack | undefined; "alignment-baseline"?: csstype.Property.AlignmentBaseline | undefined; "baseline-shift"?: csstype.Property.BaselineShift | undefined; "clip-rule"?: csstype.Property.ClipRule | undefined; "color-interpolation"?: csstype.Property.ColorInterpolation | undefined; "color-rendering"?: csstype.Property.ColorRendering | undefined; "dominant-baseline"?: csstype.Property.DominantBaseline | undefined; "fill-opacity"?: csstype.Property.FillOpacity | undefined; "fill-rule"?: csstype.Property.FillRule | undefined; "flood-color"?: csstype.Property.FloodColor | undefined; "flood-opacity"?: csstype.Property.FloodOpacity | undefined; "glyph-orientation-vertical"?: csstype.Property.GlyphOrientationVertical | undefined; "lighting-color"?: csstype.Property.LightingColor | undefined; "marker-end"?: csstype.Property.MarkerEnd | undefined; "marker-mid"?: csstype.Property.MarkerMid | undefined; "marker-start"?: csstype.Property.MarkerStart | undefined; "shape-rendering"?: csstype.Property.ShapeRendering | undefined; "stop-color"?: csstype.Property.StopColor | undefined; "stop-opacity"?: csstype.Property.StopOpacity | undefined; "stroke-dasharray"?: csstype.Property.StrokeDasharray | undefined; "stroke-dashoffset"?: csstype.Property.StrokeDashoffset | undefined; "stroke-linecap"?: csstype.Property.StrokeLinecap | undefined; "stroke-linejoin"?: csstype.Property.StrokeLinejoin | undefined; "stroke-miterlimit"?: csstype.Property.StrokeMiterlimit | undefined; "stroke-opacity"?: csstype.Property.StrokeOpacity | undefined; "stroke-width"?: csstype.Property.StrokeWidth | undefined; "text-anchor"?: csstype.Property.TextAnchor | undefined; "vector-effect"?: csstype.Property.VectorEffect | undefined; }; transform: { x?: TransformValue | TransformValue[] | undefined; y?: TransformValue | TransformValue[] | undefined; z?: TransformValue | TransformValue[] | undefined; translateX?: TransformValue | TransformValue[] | undefined; translateY?: TransformValue | TransformValue[] | undefined; translateZ?: TransformValue | TransformValue[] | undefined; rotate?: TransformValue | TransformValue[] | undefined; rotateX?: TransformValue | TransformValue[] | undefined; rotateY?: TransformValue | TransformValue[] | undefined; rotateZ?: TransformValue | TransformValue[] | undefined; scale?: TransformValue | TransformValue[] | undefined; scaleX?: TransformValue | TransformValue[] | undefined; scaleY?: TransformValue | TransformValue[] | undefined; scaleZ?: TransformValue | TransformValue[] | undefined; skew?: TransformValue | TransformValue[] | undefined; skewX?: TransformValue | TransformValue[] | undefined; skewY?: TransformValue | TransformValue[] | undefined; originX?: TransformValue | TransformValue[] | undefined; originY?: TransformValue | TransformValue[] | undefined; originZ?: TransformValue | TransformValue[] | undefined; perspective?: TransformValue | TransformValue[] | undefined; transformPerspective?: TransformValue | TransformValue[] | undefined; }; }; declare function useMotions(): MotionInstanceBindings>; /** * A Composable holding all the ongoing transitions in a local reference. */ declare function useMotionTransitions(): MotionTransitions; /** * A Composable handling variants selection and features. */ declare function useMotionVariants>(variants?: MaybeRef): { state: vue.ComputedRef; variant: Ref; }; type UseSpringOptions = Partial & { target?: MaybeRef$1; }; declare function useSpring(values: Partial, spring?: UseSpringOptions): SpringControls; /** * Reactive prefers-reduced-motion. */ declare function useReducedMotion(options?: { window?: Window; }): Ref; export { type CustomValueType, type Easing, type EasingFunction, type Inertia, type Keyframes, type KeyframesTarget, type MakeCustomValueType, type MakeKeyframes, type ModuleOptions, _default$1 as MotionComponent, type MotionControls, directive as MotionDirective, _default as MotionGroupComponent, type MotionInstance, type MotionInstanceBindings, MotionPlugin, type MotionPluginOptions, type MotionProperties, type MotionTarget, type MotionTransitions, type MotionValuesMap, type MotionVariants, type Omit, type Orchestration, type PassiveEffect, type PermissiveMotionProperties, type PermissiveTarget, type PermissiveTransitionDefinition, type PopmotionTransitionProps, type PropertiesKeys, type Props, type Repeat, type ResolvedKeyframesTarget, type ResolvedSingleTarget, type ResolvedValueTarget, type SVGPathProperties, type SingleTarget, type Spring, type SpringControls, type StartAnimation, type StopAnimation, type StyleProperties, type Subscriber, type Target, type TargetAndTransition, type TargetResolver, type TargetWithKeyframes, type TransformProperties, type TransformValue, type Transformer, type Transition, type TransitionDefinition, type TransitionMap, type Tween, type UseMotionOptions, type ValueTarget, type Variant, fade, fadeVisible, fadeVisibleOnce, isMotionInstance, pop, popVisible, popVisibleOnce, reactiveStyle, reactiveTransform, rollBottom, rollLeft, rollRight, rollTop, rollVisibleBottom, rollVisibleLeft, rollVisibleOnceBottom, rollVisibleOnceLeft, rollVisibleOnceRight, rollVisibleOnceTop, rollVisibleRight, rollVisibleTop, slideBottom, slideLeft, slideRight, slideTop, slideVisibleBottom, slideVisibleLeft, slideVisibleOnceBottom, slideVisibleOnceLeft, slideVisibleOnceRight, slideVisibleOnceTop, slideVisibleRight, slideVisibleTop, slugify, useElementStyle, useElementTransform, useMotion, useMotionControls, useMotionFeatures, useMotionProperties, useMotionTransitions, useMotionVariants, useMotions, useReducedMotion, useSpring };