import type { FieldState } from '@spark-web/field';
import type { TextOverflowStrategy } from '@spark-web/text';
import type { DataAttributeMap } from '@spark-web/utils/internal';
import type { InputHTMLAttributes } from 'react';
import type { AdornmentsAsChildren } from "./children-to-adornments.js";
type ValidTypes = 'text' | 'password' | 'email' | 'search' | 'number' | 'tel' | 'url';
type ValidModes = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
type NativeInputProps = Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'onBlur' | 'onChange' | 'onFocus' | 'onInput' | 'placeholder' | 'value' | 'required' | 'autoComplete'>;
export type TextInputProps = {
    /** Sets data attributes for the element. */
    data?: DataAttributeMap;
    /**
     * How an input behaves varies considerably depending on the value of its type
     * attribute. If this attribute is not specified, the default type "text".
     */
    type?: ValidTypes;
    /** Sets the input mode attribute for the component. */
    inputMode?: ValidModes;
    /**
     * Adorn the input with ornamental element(s) to aid user input, or
     * interactive element(s) to augment user input. Each child **must** be
     * wrapped with the `InputAdornment` component to ensure proper layout,
     * otherwise it will not be rendered.
     */
    children?: AdornmentsAsChildren;
    /** Manage how text behaves with regard to overflow. */
    overflowStrategy?: TextOverflowStrategy;
} & NativeInputProps;
/** Organize and emphasize information quickly and effectively in a list of text elements. */
export declare const TextInput: import("react").ForwardRefExoticComponent<{
    /** Sets data attributes for the element. */
    data?: DataAttributeMap;
    /**
     * How an input behaves varies considerably depending on the value of its type
     * attribute. If this attribute is not specified, the default type "text".
     */
    type?: ValidTypes;
    /** Sets the input mode attribute for the component. */
    inputMode?: ValidModes;
    /**
     * Adorn the input with ornamental element(s) to aid user input, or
     * interactive element(s) to augment user input. Each child **must** be
     * wrapped with the `InputAdornment` component to ensure proper layout,
     * otherwise it will not be rendered.
     */
    children?: AdornmentsAsChildren;
    /** Manage how text behaves with regard to overflow. */
    overflowStrategy?: TextOverflowStrategy;
} & NativeInputProps & import("react").RefAttributes<HTMLInputElement>>;
export type UseInputStylesProps = FieldState & {
    startAdornment?: boolean;
    endAdornment?: boolean;
    readOnly?: boolean;
    overflowStrategy?: TextOverflowStrategy;
};
/**
 * Returns a tuple where the first item is an object of props to spread onto the
 * underlying Box component that our inputs are created with, and the second
 * item is a CSS object to be passed to Emotion's `css` function
 **/
export declare const useInputStyles: ({ disabled, startAdornment, endAdornment, readOnly, overflowStrategy, }: UseInputStylesProps) => readonly [{
    readonly flex: 1;
    readonly position: "relative";
    readonly height: "medium";
    readonly paddingLeft: "none" | "medium";
    readonly paddingRight: "none" | "medium";
    readonly width: "full";
}, {
    readonly ':enabled': {
        readonly ':focus + [data-focus-indicator]': {
            boxShadow?: string;
            outline?: string;
            outlineOffset?: string;
        } | {
            boxShadow: string;
            outline: string;
            outlineOffset: string;
            borderColor: string;
        } | {
            "[data-brighte-focus-visible] &": {
                boxShadow: string;
            };
            outline: string;
            outlineOffset: string;
            borderColor: string;
        };
    };
    readonly ':focus': {
        readonly outline: "none";
    };
    readonly '&[aria-invalid=true]': {
        readonly color: string;
    };
    readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
    readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
    readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
    readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
    readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
    readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
    readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
    readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
    readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
    readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
    readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
    readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
    readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
    readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
    readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
    readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
    readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
    readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
    readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
    readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
    readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
    readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
    readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
    readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
    readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
    readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
    readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
    readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
    readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
    readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
    readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
    readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
    readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
    readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
    readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
    readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
    readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
    readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
    readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
    readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
    readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
    readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
    readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
    readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
    readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
    readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
    readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
    readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
    readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
    readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
    readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
    readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
    readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
    readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
    readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
    readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
    readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
    readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
    readonly columnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
    readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
    readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
    readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
    readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
    readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
    readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
    readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
    readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
    readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
    readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
    readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
    readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
    readonly display?: readonly string[] | import("csstype").Property.Display | readonly import("csstype").Property.Display[] | undefined;
    readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
    readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
    readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
    readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
    readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
    readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
    readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
    readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
    readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
    readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
    readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
    readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
    readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
    readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
    readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
    readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
    readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
    readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
    readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
    readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
    readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
    readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
    readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
    readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
    readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
    readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
    readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
    readonly gridColumnEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
    readonly gridColumnStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
    readonly gridRowEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
    readonly gridRowStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
    readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
    readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
    readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
    readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
    readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
    readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly hyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
    readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
    readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
    readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
    readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
    readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
    readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
    readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
    readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
    readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
    readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
    readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
    readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
    readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
    readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
    readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
    readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
    readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
    readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
    readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
    readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
    readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
    readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
    readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
    readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
    readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
    readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
    readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
    readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
    readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
    readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
    readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
    readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
    readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
    readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
    readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
    readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
    readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
    readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
    readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
    readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
    readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
    readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
    readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
    readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
    readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
    readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
    readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
    readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
    readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
    readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
    readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
    readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
    readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
    readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
    readonly overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
    readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
    readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
    readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
    readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
    readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
    readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
    readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
    readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
    readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
    readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
    readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
    readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
    readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
    readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
    readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
    readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
    readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
    readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
    readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
    readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
    readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
    readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
    readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
    readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly scale?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
    readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
    readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
    readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
    readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
    readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
    readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
    readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
    readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
    readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
    readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
    readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
    readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
    readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
    readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
    readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
    readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
    readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
    readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
    readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
    readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
    readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
    readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
    readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
    readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
    readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
    readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
    readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
    readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
    readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
    readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
    readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
    readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
    readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
    readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
    readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
    readonly whiteSpace?: readonly string[] | import("csstype").Property.WhiteSpace | readonly import("csstype").Property.WhiteSpace[] | undefined;
    readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
    readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
    readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
    readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
    readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
    readonly wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
    readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
    readonly wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
    readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly zIndex?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
    readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
    readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
    readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
    readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
    readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
    readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
    readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
    readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
    readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
    readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
    readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
    readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
    readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
    readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
    readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
    readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
    readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
    readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
    readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
    readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
    readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
    readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
    readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
    readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
    readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
    readonly gridArea?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
    readonly gridColumn?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
    readonly gridRow?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
    readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
    readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
    readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly lineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
    readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
    readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
    readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
    readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
    readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
    readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
    readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
    readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
    readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
    readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
    readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
    readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
    readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
    readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
    readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
    readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
    readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
    readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
    readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
    readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
    readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
    readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
    readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
    readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
    readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
    readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly MozColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
    readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
    readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
    readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
    readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
    readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
    readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
    readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
    readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
    readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
    readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
    readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
    readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
    readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
    readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
    readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
    readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
    readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
    readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
    readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
    readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
    readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
    readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
    readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
    readonly msHyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
    readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
    readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
    readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
    readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
    readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
    readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
    readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
    readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
    readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
    readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
    readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
    readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
    readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
    readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
    readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
    readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
    readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
    readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
    readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
    readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
    readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
    readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
    readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
    readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
    readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
    readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
    readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
    readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
    readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
    readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
    readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly WebkitColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly WebkitLineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
    readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
    readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
    readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
    readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
    readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
    readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
    readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
    readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
    readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
    readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
    readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
    readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
    readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
    readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
    readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
    readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
    readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
    readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
    readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
    readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
    readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
    readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
    readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
    readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
    readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
    readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
    readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
    readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
    readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
    readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
    readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
    readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
    readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
    readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
    readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
    readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
    readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
    readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
    readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
    readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
    readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
    readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
    readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
    readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
    readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
    readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
    readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
    readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
    readonly glyphOrientationVertical?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
    readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
    readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
    readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
    readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
    readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
    readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
    readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
    readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
    readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
    readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
    readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
    readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
    readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
    readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
    readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
    readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
    readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
    readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
    readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
    readonly "::part"?: import("@emotion/react").CSSObject | undefined;
    readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
    readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":has"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
    readonly ":is"?: import("@emotion/react").CSSObject | undefined;
    readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
    readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":not"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":where"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
    readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
    readonly ":active"?: import("@emotion/react").CSSObject | undefined;
    readonly ":after"?: import("@emotion/react").CSSObject | undefined;
    readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":before"?: import("@emotion/react").CSSObject | undefined;
    readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
    readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
    readonly ":current"?: import("@emotion/react").CSSObject | undefined;
    readonly ":default"?: import("@emotion/react").CSSObject | undefined;
    readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
    readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
    readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":future"?: import("@emotion/react").CSSObject | undefined;
    readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
    readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
    readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":left"?: import("@emotion/react").CSSObject | undefined;
    readonly ":link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
    readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":past"?: import("@emotion/react").CSSObject | undefined;
    readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
    readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
    readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
    readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":required"?: import("@emotion/react").CSSObject | undefined;
    readonly ":right"?: import("@emotion/react").CSSObject | undefined;
    readonly ":root"?: import("@emotion/react").CSSObject | undefined;
    readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
} | {
    readonly ':enabled': {
        readonly ':focus + [data-focus-indicator]': {
            boxShadow?: string;
            outline?: string;
            outlineOffset?: string;
        } | {
            boxShadow: string;
            outline: string;
            outlineOffset: string;
            borderColor: string;
        } | {
            "[data-brighte-focus-visible] &": {
                boxShadow: string;
            };
            outline: string;
            outlineOffset: string;
            borderColor: string;
        };
    };
    readonly ':focus': {
        readonly outline: "none";
    };
    readonly '&[aria-invalid=true]': {
        readonly color: string;
    };
    readonly whiteSpace: "nowrap";
    readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
    readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
    readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
    readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
    readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
    readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
    readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
    readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
    readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
    readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
    readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
    readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
    readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
    readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
    readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
    readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
    readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
    readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
    readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
    readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
    readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
    readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
    readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
    readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
    readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
    readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
    readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
    readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
    readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
    readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
    readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
    readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
    readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
    readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
    readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
    readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
    readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
    readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
    readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
    readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
    readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
    readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
    readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
    readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
    readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
    readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
    readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
    readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
    readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
    readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
    readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
    readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
    readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
    readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
    readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
    readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
    readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
    readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
    readonly columnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
    readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
    readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
    readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
    readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
    readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
    readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
    readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
    readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
    readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
    readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
    readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
    readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
    readonly display?: readonly string[] | import("csstype").Property.Display | readonly import("csstype").Property.Display[] | undefined;
    readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
    readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
    readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
    readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
    readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
    readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
    readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
    readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
    readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
    readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
    readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
    readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
    readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
    readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
    readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
    readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
    readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
    readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
    readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
    readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
    readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
    readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
    readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
    readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
    readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
    readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
    readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
    readonly gridColumnEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
    readonly gridColumnStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
    readonly gridRowEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
    readonly gridRowStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
    readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
    readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
    readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
    readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
    readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
    readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly hyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
    readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
    readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
    readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
    readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
    readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
    readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
    readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
    readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
    readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
    readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
    readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
    readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
    readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
    readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
    readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
    readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
    readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
    readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
    readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
    readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
    readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
    readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
    readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
    readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
    readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
    readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
    readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
    readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
    readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
    readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
    readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
    readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
    readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
    readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
    readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
    readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
    readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
    readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
    readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
    readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
    readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
    readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
    readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
    readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
    readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
    readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
    readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
    readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
    readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
    readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
    readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
    readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
    readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
    readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
    readonly overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
    readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
    readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
    readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
    readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
    readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
    readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
    readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
    readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
    readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
    readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
    readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
    readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
    readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
    readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
    readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
    readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
    readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
    readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
    readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
    readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
    readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
    readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
    readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
    readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly scale?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
    readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
    readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
    readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
    readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
    readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
    readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
    readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
    readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
    readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
    readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
    readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
    readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
    readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
    readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
    readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
    readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
    readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
    readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
    readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
    readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
    readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
    readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
    readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
    readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
    readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
    readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
    readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
    readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
    readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
    readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
    readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
    readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
    readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
    readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
    readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
    readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
    readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
    readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
    readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
    readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
    readonly wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
    readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
    readonly wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
    readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly zIndex?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
    readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
    readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
    readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
    readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
    readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
    readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
    readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
    readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
    readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
    readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
    readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
    readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
    readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
    readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
    readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
    readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
    readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
    readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
    readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
    readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
    readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
    readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
    readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
    readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
    readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
    readonly gridArea?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
    readonly gridColumn?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
    readonly gridRow?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
    readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
    readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
    readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly lineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
    readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
    readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
    readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
    readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
    readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
    readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
    readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
    readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
    readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
    readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
    readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
    readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
    readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
    readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
    readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
    readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
    readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
    readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
    readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
    readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
    readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
    readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
    readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
    readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
    readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
    readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly MozColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
    readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
    readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
    readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
    readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
    readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
    readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
    readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
    readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
    readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
    readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
    readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
    readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
    readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
    readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
    readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
    readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
    readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
    readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
    readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
    readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
    readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
    readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
    readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
    readonly msHyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
    readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
    readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
    readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
    readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
    readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
    readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
    readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
    readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
    readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
    readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
    readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
    readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
    readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
    readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
    readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
    readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
    readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
    readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
    readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
    readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
    readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
    readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
    readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
    readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
    readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
    readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
    readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
    readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
    readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
    readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
    readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly WebkitColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly WebkitLineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
    readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
    readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
    readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
    readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
    readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
    readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
    readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
    readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
    readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
    readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
    readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
    readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
    readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
    readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
    readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
    readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
    readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
    readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
    readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
    readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
    readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
    readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
    readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
    readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
    readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
    readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
    readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
    readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
    readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
    readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
    readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
    readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
    readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
    readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
    readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
    readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
    readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
    readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
    readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
    readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
    readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
    readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
    readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
    readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
    readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
    readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
    readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
    readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
    readonly glyphOrientationVertical?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
    readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
    readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
    readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
    readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
    readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
    readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
    readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
    readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
    readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
    readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
    readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
    readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
    readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
    readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
    readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
    readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
    readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
    readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
    readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
    readonly "::part"?: import("@emotion/react").CSSObject | undefined;
    readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
    readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":has"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
    readonly ":is"?: import("@emotion/react").CSSObject | undefined;
    readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
    readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":not"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":where"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
    readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
    readonly ":active"?: import("@emotion/react").CSSObject | undefined;
    readonly ":after"?: import("@emotion/react").CSSObject | undefined;
    readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":before"?: import("@emotion/react").CSSObject | undefined;
    readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
    readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
    readonly ":current"?: import("@emotion/react").CSSObject | undefined;
    readonly ":default"?: import("@emotion/react").CSSObject | undefined;
    readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
    readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
    readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":future"?: import("@emotion/react").CSSObject | undefined;
    readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
    readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
    readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":left"?: import("@emotion/react").CSSObject | undefined;
    readonly ":link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
    readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":past"?: import("@emotion/react").CSSObject | undefined;
    readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
    readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
    readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
    readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":required"?: import("@emotion/react").CSSObject | undefined;
    readonly ":right"?: import("@emotion/react").CSSObject | undefined;
    readonly ":root"?: import("@emotion/react").CSSObject | undefined;
    readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
} | {
    readonly ':enabled': {
        readonly ':focus + [data-focus-indicator]': {
            boxShadow?: string;
            outline?: string;
            outlineOffset?: string;
        } | {
            boxShadow: string;
            outline: string;
            outlineOffset: string;
            borderColor: string;
        } | {
            "[data-brighte-focus-visible] &": {
                boxShadow: string;
            };
            outline: string;
            outlineOffset: string;
            borderColor: string;
        };
    };
    readonly ':focus': {
        readonly outline: "none";
    };
    readonly '&[aria-invalid=true]': {
        readonly color: string;
    };
    readonly display: "block";
    readonly overflowWrap: "break-word";
    readonly wordBreak: "break-word";
    readonly wordWrap: "break-word";
    readonly accentColor?: readonly string[] | import("csstype").Property.AccentColor | readonly import("csstype").Property.AccentColor[] | undefined;
    readonly alignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly alignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly alignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly alignTracks?: readonly string[] | import("csstype").Property.AlignTracks | readonly import("csstype").Property.AlignTracks[] | undefined;
    readonly animationComposition?: readonly string[] | import("csstype").Property.AnimationComposition | readonly import("csstype").Property.AnimationComposition[] | undefined;
    readonly animationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly animationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly animationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly animationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly animationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly animationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly animationRangeEnd?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeEnd<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
    readonly animationRangeStart?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRangeStart<string | number> | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
    readonly animationTimeline?: readonly string[] | import("csstype").Property.AnimationTimeline | readonly import("csstype").Property.AnimationTimeline[] | undefined;
    readonly animationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
    readonly aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
    readonly backdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly backgroundAttachment?: readonly string[] | import("csstype").Property.BackgroundAttachment | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
    readonly backgroundBlendMode?: readonly string[] | import("csstype").Property.BackgroundBlendMode | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
    readonly backgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly backgroundColor?: readonly string[] | import("csstype").Property.BackgroundColor | readonly import("csstype").Property.BackgroundColor[] | undefined;
    readonly backgroundImage?: readonly string[] | import("csstype").Property.BackgroundImage | readonly import("csstype").Property.BackgroundImage[] | undefined;
    readonly backgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly backgroundPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionX<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
    readonly backgroundPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
    readonly backgroundRepeat?: readonly string[] | import("csstype").Property.BackgroundRepeat | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
    readonly backgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly blockOverflow?: readonly string[] | import("csstype").Property.BlockOverflow | readonly import("csstype").Property.BlockOverflow[] | undefined;
    readonly blockSize?: readonly (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
    readonly borderBlockColor?: readonly string[] | import("csstype").Property.BorderBlockColor | readonly import("csstype").Property.BorderBlockColor[] | undefined;
    readonly borderBlockEndColor?: readonly string[] | import("csstype").Property.BorderBlockEndColor | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
    readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
    readonly borderBlockEndWidth?: readonly string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStartColor?: readonly string[] | import("csstype").Property.BorderBlockStartColor | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
    readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
    readonly borderBlockStartWidth?: readonly string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
    readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
    readonly borderBlockWidth?: readonly string[] | import("csstype").Property.BorderBlockWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
    readonly borderBottomColor?: readonly string[] | import("csstype").Property.BorderBottomColor | readonly import("csstype").Property.BorderBottomColor[] | undefined;
    readonly borderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
    readonly borderBottomWidth?: readonly string[] | import("csstype").Property.BorderBottomWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
    readonly borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
    readonly borderEndEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
    readonly borderEndStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
    readonly borderImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
    readonly borderImageRepeat?: readonly string[] | import("csstype").Property.BorderImageRepeat | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
    readonly borderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly borderImageSource?: readonly string[] | import("csstype").Property.BorderImageSource | readonly import("csstype").Property.BorderImageSource[] | undefined;
    readonly borderImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineColor?: readonly string[] | import("csstype").Property.BorderInlineColor | readonly import("csstype").Property.BorderInlineColor[] | undefined;
    readonly borderInlineEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly borderInlineEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly borderInlineStartWidth?: readonly string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
    readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
    readonly borderInlineWidth?: readonly string[] | import("csstype").Property.BorderInlineWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
    readonly borderLeftColor?: readonly string[] | import("csstype").Property.BorderLeftColor | readonly import("csstype").Property.BorderLeftColor[] | undefined;
    readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
    readonly borderLeftWidth?: readonly string[] | import("csstype").Property.BorderLeftWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
    readonly borderRightColor?: readonly string[] | import("csstype").Property.BorderRightColor | readonly import("csstype").Property.BorderRightColor[] | undefined;
    readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
    readonly borderRightWidth?: readonly string[] | import("csstype").Property.BorderRightWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
    readonly borderSpacing?: readonly (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
    readonly borderStartEndRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
    readonly borderStartStartRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
    readonly borderTopColor?: readonly string[] | import("csstype").Property.BorderTopColor | readonly import("csstype").Property.BorderTopColor[] | undefined;
    readonly borderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly borderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
    readonly borderTopWidth?: readonly string[] | import("csstype").Property.BorderTopWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
    readonly bottom?: readonly (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
    readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly boxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
    readonly breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
    readonly breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
    readonly captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
    readonly caretColor?: readonly string[] | import("csstype").Property.CaretColor | readonly import("csstype").Property.CaretColor[] | undefined;
    readonly caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
    readonly clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
    readonly clipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly color?: readonly string[] | import("csstype").Property.Color | readonly import("csstype").Property.Color[] | undefined;
    readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly colorScheme?: readonly string[] | import("csstype").Property.ColorScheme | readonly import("csstype").Property.ColorScheme[] | undefined;
    readonly columnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly columnGap?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
    readonly columnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly columnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly columnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly columnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly contain?: readonly string[] | import("csstype").Property.Contain | readonly import("csstype").Property.Contain[] | undefined;
    readonly containIntrinsicBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicHeight?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
    readonly containIntrinsicInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
    readonly containIntrinsicWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
    readonly containerName?: readonly string[] | import("csstype").Property.ContainerName | readonly import("csstype").Property.ContainerName[] | undefined;
    readonly containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
    readonly content?: readonly string[] | import("csstype").Property.Content | readonly import("csstype").Property.Content[] | undefined;
    readonly contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
    readonly counterIncrement?: readonly string[] | import("csstype").Property.CounterIncrement | readonly import("csstype").Property.CounterIncrement[] | undefined;
    readonly counterReset?: readonly string[] | import("csstype").Property.CounterReset | readonly import("csstype").Property.CounterReset[] | undefined;
    readonly counterSet?: readonly string[] | import("csstype").Property.CounterSet | readonly import("csstype").Property.CounterSet[] | undefined;
    readonly cursor?: readonly string[] | import("csstype").Property.Cursor | readonly import("csstype").Property.Cursor[] | undefined;
    readonly direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
    readonly emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
    readonly filter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly flexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly flexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly flexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
    readonly fontFamily?: readonly string[] | import("csstype").Property.FontFamily | readonly import("csstype").Property.FontFamily[] | undefined;
    readonly fontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly fontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
    readonly fontPalette?: readonly string[] | import("csstype").Property.FontPalette | readonly import("csstype").Property.FontPalette[] | undefined;
    readonly fontSize?: readonly (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[] | undefined;
    readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
    readonly fontSmooth?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly fontStretch?: readonly string[] | import("csstype").Property.FontStretch | readonly import("csstype").Property.FontStretch[] | undefined;
    readonly fontStyle?: readonly string[] | import("csstype").Property.FontStyle | readonly import("csstype").Property.FontStyle[] | undefined;
    readonly fontSynthesis?: readonly string[] | import("csstype").Property.FontSynthesis | readonly import("csstype").Property.FontSynthesis[] | undefined;
    readonly fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
    readonly fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
    readonly fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
    readonly fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
    readonly fontVariant?: readonly string[] | import("csstype").Property.FontVariant | readonly import("csstype").Property.FontVariant[] | undefined;
    readonly fontVariantAlternates?: readonly string[] | import("csstype").Property.FontVariantAlternates | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
    readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
    readonly fontVariantEastAsian?: readonly string[] | import("csstype").Property.FontVariantEastAsian | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
    readonly fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
    readonly fontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly fontVariantNumeric?: readonly string[] | import("csstype").Property.FontVariantNumeric | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
    readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
    readonly fontVariationSettings?: readonly string[] | import("csstype").Property.FontVariationSettings | readonly import("csstype").Property.FontVariationSettings[] | undefined;
    readonly fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
    readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
    readonly gridAutoColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
    readonly gridAutoFlow?: readonly string[] | import("csstype").Property.GridAutoFlow | readonly import("csstype").Property.GridAutoFlow[] | undefined;
    readonly gridAutoRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
    readonly gridColumnEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnEnd | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
    readonly gridColumnStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
    readonly gridRowEnd?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
    readonly gridRowStart?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
    readonly gridTemplateAreas?: readonly string[] | import("csstype").Property.GridTemplateAreas | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
    readonly gridTemplateColumns?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
    readonly gridTemplateRows?: readonly (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
    readonly hangingPunctuation?: readonly string[] | import("csstype").Property.HangingPunctuation | readonly import("csstype").Property.HangingPunctuation[] | undefined;
    readonly height?: readonly (string | (string & {}))[] | import("csstype").Property.Height<string | number> | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
    readonly hyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly hyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.HyphenateLimitChars | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
    readonly hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly imageOrientation?: readonly string[] | import("csstype").Property.ImageOrientation | readonly import("csstype").Property.ImageOrientation[] | undefined;
    readonly imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
    readonly imageResolution?: readonly string[] | import("csstype").Property.ImageResolution | readonly import("csstype").Property.ImageResolution[] | undefined;
    readonly initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly inlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
    readonly inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
    readonly insetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly insetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly insetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly insetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
    readonly justifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly justifyItems?: readonly string[] | import("csstype").Property.JustifyItems | readonly import("csstype").Property.JustifyItems[] | undefined;
    readonly justifySelf?: readonly string[] | import("csstype").Property.JustifySelf | readonly import("csstype").Property.JustifySelf[] | undefined;
    readonly justifyTracks?: readonly string[] | import("csstype").Property.JustifyTracks | readonly import("csstype").Property.JustifyTracks[] | undefined;
    readonly left?: readonly (string | (string & {}))[] | import("csstype").Property.Left<string | number> | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
    readonly letterSpacing?: readonly string[] | import("csstype").Property.LetterSpacing<string | number> | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
    readonly lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly lineHeight?: readonly (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[] | undefined;
    readonly lineHeightStep?: readonly string[] | import("csstype").Property.LineHeightStep<string | number> | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
    readonly listStyleImage?: readonly string[] | import("csstype").Property.ListStyleImage | readonly import("csstype").Property.ListStyleImage[] | undefined;
    readonly listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
    readonly listStyleType?: readonly string[] | import("csstype").Property.ListStyleType | readonly import("csstype").Property.ListStyleType[] | undefined;
    readonly marginBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly marginBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
    readonly marginBottom?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
    readonly marginInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly marginInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly marginLeft?: readonly (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
    readonly marginRight?: readonly (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
    readonly marginTop?: readonly (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
    readonly marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
    readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
    readonly maskBorderOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly maskBorderRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly maskBorderSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly maskBorderSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly maskBorderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly maskClip?: readonly string[] | import("csstype").Property.MaskClip | readonly import("csstype").Property.MaskClip[] | undefined;
    readonly maskComposite?: readonly string[] | import("csstype").Property.MaskComposite | readonly import("csstype").Property.MaskComposite[] | undefined;
    readonly maskImage?: readonly string[] | import("csstype").Property.MaskImage | readonly import("csstype").Property.MaskImage[] | undefined;
    readonly maskMode?: readonly string[] | import("csstype").Property.MaskMode | readonly import("csstype").Property.MaskMode[] | undefined;
    readonly maskOrigin?: readonly string[] | import("csstype").Property.MaskOrigin | readonly import("csstype").Property.MaskOrigin[] | undefined;
    readonly maskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
    readonly maskRepeat?: readonly string[] | import("csstype").Property.MaskRepeat | readonly import("csstype").Property.MaskRepeat[] | undefined;
    readonly maskSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
    readonly maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
    readonly masonryAutoFlow?: readonly string[] | import("csstype").Property.MasonryAutoFlow | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
    readonly mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "auto-add")[] | undefined;
    readonly mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
    readonly mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
    readonly maxBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
    readonly maxHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
    readonly maxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
    readonly maxWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
    readonly minBlockSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
    readonly minHeight?: readonly (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
    readonly minInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
    readonly minWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
    readonly mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
    readonly motionDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly motionPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly motionRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly objectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly offsetAnchor?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
    readonly offsetDistance?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
    readonly offsetPath?: readonly string[] | import("csstype").Property.OffsetPath | readonly import("csstype").Property.OffsetPath[] | undefined;
    readonly offsetPosition?: readonly (string | (string & {}))[] | import("csstype").Property.OffsetPosition<string | number> | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
    readonly offsetRotate?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly offsetRotation?: readonly string[] | import("csstype").Property.OffsetRotate | readonly import("csstype").Property.OffsetRotate[] | undefined;
    readonly opacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly order?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly orphans?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
    readonly outlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly outlineOffset?: readonly string[] | import("csstype").Property.OutlineOffset<string | number> | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
    readonly outlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly outlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
    readonly overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
    readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
    readonly overflowClipMargin?: readonly (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
    readonly overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
    readonly overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly overflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly overlay?: import("csstype").Property.Overlay | readonly NonNullable<import("csstype").Property.Overlay | undefined>[] | readonly import("csstype").Property.Overlay[] | undefined;
    readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | readonly NonNullable<import("csstype").Property.OverscrollBehaviorBlock | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
    readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
    readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
    readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
    readonly paddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly paddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly paddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | undefined;
    readonly paddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly paddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly paddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
    readonly paddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
    readonly paddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
    readonly page?: readonly string[] | import("csstype").Property.Page | readonly import("csstype").Property.Page[] | undefined;
    readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
    readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
    readonly pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
    readonly paintOrder?: readonly string[] | import("csstype").Property.PaintOrder | readonly import("csstype").Property.PaintOrder[] | undefined;
    readonly perspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly perspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
    readonly position?: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[] | readonly import("csstype").Property.Position[] | undefined;
    readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly quotes?: readonly string[] | import("csstype").Property.Quotes | readonly import("csstype").Property.Quotes[] | undefined;
    readonly resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
    readonly right?: readonly (string | (string & {}))[] | import("csstype").Property.Right<string | number> | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
    readonly rotate?: readonly string[] | import("csstype").Property.Rotate | readonly import("csstype").Property.Rotate[] | undefined;
    readonly rowGap?: readonly (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
    readonly rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
    readonly rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
    readonly rubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly scale?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.Scale | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
    readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
    readonly scrollMarginBlockEnd?: readonly string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlockStart?: readonly string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineEnd?: readonly string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollMarginInlineStart?: readonly string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBottom?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollPaddingLeft?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
    readonly scrollPaddingRight?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
    readonly scrollPaddingTop?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapAlign?: readonly string[] | import("csstype").Property.ScrollSnapAlign | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
    readonly scrollSnapMarginBottom?: readonly string[] | import("csstype").Property.ScrollMarginBottom<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginLeft?: readonly string[] | import("csstype").Property.ScrollMarginLeft<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginRight?: readonly string[] | import("csstype").Property.ScrollMarginRight<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
    readonly scrollSnapMarginTop?: readonly string[] | import("csstype").Property.ScrollMarginTop<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
    readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
    readonly scrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly scrollTimelineAxis?: readonly string[] | import("csstype").Property.ScrollTimelineAxis | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
    readonly scrollTimelineName?: readonly string[] | import("csstype").Property.ScrollTimelineName | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
    readonly scrollbarColor?: readonly string[] | import("csstype").Property.ScrollbarColor | readonly import("csstype").Property.ScrollbarColor[] | undefined;
    readonly scrollbarGutter?: readonly string[] | import("csstype").Property.ScrollbarGutter | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
    readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
    readonly shapeImageThreshold?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
    readonly shapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly shapeOutside?: readonly string[] | import("csstype").Property.ShapeOutside | readonly import("csstype").Property.ShapeOutside[] | undefined;
    readonly tabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
    readonly textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
    readonly textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly textCombineUpright?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly textDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly textDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly textDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
    readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly textDecorationThickness?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
    readonly textEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly textEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly textEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly textIndent?: readonly (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
    readonly textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
    readonly textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly textOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
    readonly textShadow?: readonly string[] | import("csstype").Property.TextShadow | readonly import("csstype").Property.TextShadow[] | undefined;
    readonly textSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
    readonly textUnderlineOffset?: readonly (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
    readonly textUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
    readonly timelineScope?: readonly string[] | import("csstype").Property.TimelineScope | readonly import("csstype").Property.TimelineScope[] | undefined;
    readonly top?: readonly (string | (string & {}))[] | import("csstype").Property.Top<string | number> | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
    readonly touchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly transform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
    readonly transformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly transitionBehavior?: readonly string[] | import("csstype").Property.TransitionBehavior | readonly import("csstype").Property.TransitionBehavior[] | undefined;
    readonly transitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly transitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly transitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly transitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly translate?: readonly (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
    readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
    readonly userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly verticalAlign?: readonly (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
    readonly viewTimelineAxis?: readonly string[] | import("csstype").Property.ViewTimelineAxis | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
    readonly viewTimelineInset?: readonly (string | (string & {}))[] | import("csstype").Property.ViewTimelineInset<string | number> | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
    readonly viewTimelineName?: readonly string[] | import("csstype").Property.ViewTimelineName | readonly import("csstype").Property.ViewTimelineName[] | undefined;
    readonly viewTransitionName?: readonly string[] | import("csstype").Property.ViewTransitionName | readonly import("csstype").Property.ViewTransitionName[] | undefined;
    readonly visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
    readonly whiteSpace?: readonly string[] | import("csstype").Property.WhiteSpace | readonly import("csstype").Property.WhiteSpace[] | undefined;
    readonly whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
    readonly whiteSpaceTrim?: readonly string[] | import("csstype").Property.WhiteSpaceTrim | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
    readonly widows?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
    readonly width?: readonly (string | (string & {}))[] | import("csstype").Property.Width<string | number> | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
    readonly willChange?: readonly string[] | import("csstype").Property.WillChange | readonly import("csstype").Property.WillChange[] | undefined;
    readonly wordSpacing?: readonly string[] | import("csstype").Property.WordSpacing<string | number> | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
    readonly writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly zIndex?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | undefined;
    readonly zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
    readonly all?: import("csstype").Globals | readonly NonNullable<import("csstype").Globals | undefined>[] | readonly import("csstype").Globals[] | undefined;
    readonly animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly animationRange?: readonly (string | (string & {}))[] | import("csstype").Property.AnimationRange<string | number> | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
    readonly background?: readonly (string | (string & {}))[] | import("csstype").Property.Background<string | number> | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
    readonly backgroundPosition?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
    readonly border?: import("csstype").Property.Border<string | number> | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
    readonly borderBlock?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
    readonly borderBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
    readonly borderBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
    readonly borderBottom?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
    readonly borderColor?: readonly string[] | import("csstype").Property.BorderColor | readonly import("csstype").Property.BorderColor[] | undefined;
    readonly borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly borderInline?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
    readonly borderInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
    readonly borderInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
    readonly borderLeft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
    readonly borderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly borderRight?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
    readonly borderStyle?: readonly string[] | import("csstype").Property.BorderStyle | readonly import("csstype").Property.BorderStyle[] | undefined;
    readonly borderTop?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
    readonly borderWidth?: readonly (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
    readonly caret?: readonly string[] | import("csstype").Property.Caret | readonly import("csstype").Property.Caret[] | undefined;
    readonly columnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly columns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly containIntrinsicSize?: readonly (string | (string & {}))[] | import("csstype").Property.ContainIntrinsicSize<string | number> | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
    readonly container?: readonly string[] | import("csstype").Property.Container | readonly import("csstype").Property.Container[] | undefined;
    readonly flex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly flexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly font?: readonly string[] | import("csstype").Property.Font | readonly import("csstype").Property.Font[] | undefined;
    readonly gap?: readonly (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
    readonly grid?: readonly string[] | import("csstype").Property.Grid | readonly import("csstype").Property.Grid[] | undefined;
    readonly gridArea?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
    readonly gridColumn?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
    readonly gridRow?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
    readonly gridTemplate?: readonly string[] | import("csstype").Property.GridTemplate | readonly import("csstype").Property.GridTemplate[] | undefined;
    readonly inset?: readonly (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
    readonly insetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly insetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly lineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.LineClamp | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
    readonly listStyle?: readonly string[] | import("csstype").Property.ListStyle | readonly import("csstype").Property.ListStyle[] | undefined;
    readonly margin?: readonly (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
    readonly marginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
    readonly marginInline?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
    readonly mask?: readonly (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
    readonly maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly motion?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly offset?: readonly (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
    readonly outline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly overflow?: readonly string[] | import("csstype").Property.Overflow | readonly import("csstype").Property.Overflow[] | undefined;
    readonly overscrollBehavior?: readonly string[] | import("csstype").Property.OverscrollBehavior | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
    readonly padding?: readonly (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
    readonly paddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
    readonly paddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
    readonly placeContent?: readonly string[] | import("csstype").Property.PlaceContent | readonly import("csstype").Property.PlaceContent[] | undefined;
    readonly placeItems?: readonly string[] | import("csstype").Property.PlaceItems | readonly import("csstype").Property.PlaceItems[] | undefined;
    readonly placeSelf?: readonly string[] | import("csstype").Property.PlaceSelf | readonly import("csstype").Property.PlaceSelf[] | undefined;
    readonly scrollMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollMarginBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
    readonly scrollMarginInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
    readonly scrollPadding?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
    readonly scrollPaddingBlock?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
    readonly scrollPaddingInline?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
    readonly scrollSnapMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
    readonly scrollTimeline?: readonly string[] | import("csstype").Property.ScrollTimeline | readonly import("csstype").Property.ScrollTimeline[] | undefined;
    readonly textDecoration?: readonly (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
    readonly textEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly transition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly viewTimeline?: readonly string[] | import("csstype").Property.ViewTimeline | readonly import("csstype").Property.ViewTimeline[] | undefined;
    readonly MozAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly MozAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly MozAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly MozAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly MozAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly MozAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly MozAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
    readonly MozBinding?: readonly string[] | import("csstype").Property.MozBinding | readonly import("csstype").Property.MozBinding[] | undefined;
    readonly MozBorderBottomColors?: readonly string[] | import("csstype").Property.MozBorderBottomColors | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
    readonly MozBorderEndColor?: readonly string[] | import("csstype").Property.BorderInlineEndColor | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
    readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
    readonly MozBorderEndWidth?: readonly string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
    readonly MozBorderLeftColors?: readonly string[] | import("csstype").Property.MozBorderLeftColors | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
    readonly MozBorderRightColors?: readonly string[] | import("csstype").Property.MozBorderRightColors | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
    readonly MozBorderStartColor?: readonly string[] | import("csstype").Property.BorderInlineStartColor | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
    readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
    readonly MozBorderTopColors?: readonly string[] | import("csstype").Property.MozBorderTopColors | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
    readonly MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly MozColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly MozColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly MozColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly MozColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly MozColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly MozContextProperties?: readonly string[] | import("csstype").Property.MozContextProperties | readonly import("csstype").Property.MozContextProperties[] | undefined;
    readonly MozFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly MozFontLanguageOverride?: readonly string[] | import("csstype").Property.FontLanguageOverride | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
    readonly MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly MozImageRegion?: readonly string[] | import("csstype").Property.MozImageRegion | readonly import("csstype").Property.MozImageRegion[] | undefined;
    readonly MozMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
    readonly MozOsxFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
    readonly MozPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly MozPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
    readonly MozTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
    readonly MozTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
    readonly MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
    readonly MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | readonly NonNullable<import("csstype").Property.MozWindowDragging | undefined>[] | readonly import("csstype").Property.MozWindowDragging[] | undefined;
    readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | readonly NonNullable<import("csstype").Property.MozWindowShadow | undefined>[] | readonly import("csstype").Property.MozWindowShadow[] | undefined;
    readonly msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
    readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
    readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
    readonly msContentZoomLimitMax?: readonly string[] | import("csstype").Property.MsContentZoomLimitMax | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
    readonly msContentZoomLimitMin?: readonly string[] | import("csstype").Property.MsContentZoomLimitMin | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
    readonly msContentZoomSnapPoints?: readonly string[] | import("csstype").Property.MsContentZoomSnapPoints | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
    readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
    readonly msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
    readonly msFilter?: readonly string[] | import("csstype").Property.MsFilter | readonly import("csstype").Property.MsFilter[] | undefined;
    readonly msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly msFlexPositive?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly msFlowFrom?: readonly string[] | import("csstype").Property.MsFlowFrom | readonly import("csstype").Property.MsFlowFrom[] | undefined;
    readonly msFlowInto?: readonly string[] | import("csstype").Property.MsFlowInto | readonly import("csstype").Property.MsFlowInto[] | undefined;
    readonly msGridColumns?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
    readonly msGridRows?: readonly (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
    readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
    readonly msHyphenateLimitChars?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
    readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
    readonly msHyphenateLimitZone?: readonly (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
    readonly msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
    readonly msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly msOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
    readonly msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
    readonly msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
    readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
    readonly msScrollLimitXMax?: readonly string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitXMin?: readonly string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMax?: readonly string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
    readonly msScrollLimitYMin?: readonly string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
    readonly msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
    readonly msScrollSnapPointsX?: readonly string[] | import("csstype").Property.MsScrollSnapPointsX | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
    readonly msScrollSnapPointsY?: readonly string[] | import("csstype").Property.MsScrollSnapPointsY | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
    readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
    readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
    readonly msScrollbar3dlightColor?: readonly string[] | import("csstype").Property.MsScrollbar3dlightColor | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
    readonly msScrollbarArrowColor?: readonly string[] | import("csstype").Property.MsScrollbarArrowColor | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
    readonly msScrollbarBaseColor?: readonly string[] | import("csstype").Property.MsScrollbarBaseColor | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
    readonly msScrollbarDarkshadowColor?: readonly string[] | import("csstype").Property.MsScrollbarDarkshadowColor | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
    readonly msScrollbarFaceColor?: readonly string[] | import("csstype").Property.MsScrollbarFaceColor | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
    readonly msScrollbarHighlightColor?: readonly string[] | import("csstype").Property.MsScrollbarHighlightColor | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
    readonly msScrollbarShadowColor?: readonly string[] | import("csstype").Property.MsScrollbarShadowColor | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
    readonly msScrollbarTrackColor?: readonly string[] | import("csstype").Property.MsScrollbarTrackColor | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
    readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
    readonly msTextCombineHorizontal?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly msTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly msTouchAction?: readonly string[] | import("csstype").Property.TouchAction | readonly import("csstype").Property.TouchAction[] | undefined;
    readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
    readonly msTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly msTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly msTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly msTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly msTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly msTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
    readonly msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
    readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
    readonly msWrapMargin?: readonly string[] | import("csstype").Property.MsWrapMargin<string | number> | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
    readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
    readonly msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly WebkitAlignContent?: readonly string[] | import("csstype").Property.AlignContent | readonly import("csstype").Property.AlignContent[] | undefined;
    readonly WebkitAlignItems?: readonly string[] | import("csstype").Property.AlignItems | readonly import("csstype").Property.AlignItems[] | undefined;
    readonly WebkitAlignSelf?: readonly string[] | import("csstype").Property.AlignSelf | readonly import("csstype").Property.AlignSelf[] | undefined;
    readonly WebkitAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly WebkitAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly WebkitAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly WebkitAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly WebkitAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly WebkitAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly WebkitAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
    readonly WebkitBackdropFilter?: readonly string[] | import("csstype").Property.BackdropFilter | readonly import("csstype").Property.BackdropFilter[] | undefined;
    readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly WebkitBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly WebkitBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly WebkitBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBeforeColor?: readonly string[] | import("csstype").Property.WebkitBorderBeforeColor | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
    readonly WebkitBorderBeforeStyle?: readonly string[] | import("csstype").Property.WebkitBorderBeforeStyle | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
    readonly WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | undefined;
    readonly WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly WebkitBoxReflect?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
    readonly WebkitBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
    readonly WebkitClipPath?: readonly string[] | import("csstype").Property.ClipPath | readonly import("csstype").Property.ClipPath[] | undefined;
    readonly WebkitColumnCount?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ColumnCount | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
    readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
    readonly WebkitColumnRuleColor?: readonly string[] | import("csstype").Property.ColumnRuleColor | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
    readonly WebkitColumnRuleStyle?: readonly string[] | import("csstype").Property.ColumnRuleStyle | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
    readonly WebkitColumnRuleWidth?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
    readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
    readonly WebkitColumnWidth?: readonly string[] | import("csstype").Property.ColumnWidth<string | number> | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
    readonly WebkitFilter?: readonly string[] | import("csstype").Property.Filter | readonly import("csstype").Property.Filter[] | undefined;
    readonly WebkitFlexBasis?: readonly (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
    readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
    readonly WebkitFlexGrow?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
    readonly WebkitFlexShrink?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
    readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
    readonly WebkitFontFeatureSettings?: readonly string[] | import("csstype").Property.FontFeatureSettings | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
    readonly WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
    readonly WebkitFontSmoothing?: readonly string[] | import("csstype").Property.FontSmooth<string | number> | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
    readonly WebkitFontVariantLigatures?: readonly string[] | import("csstype").Property.FontVariantLigatures | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
    readonly WebkitHyphenateCharacter?: readonly string[] | import("csstype").Property.HyphenateCharacter | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
    readonly WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
    readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
    readonly WebkitJustifyContent?: readonly string[] | import("csstype").Property.JustifyContent | readonly import("csstype").Property.JustifyContent[] | undefined;
    readonly WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly WebkitLineClamp?: readonly ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
    readonly WebkitMarginEnd?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitMarginStart?: readonly (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitMaskAttachment?: readonly string[] | import("csstype").Property.WebkitMaskAttachment | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
    readonly WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImageRepeat?: readonly string[] | import("csstype").Property.MaskBorderRepeat | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
    readonly WebkitMaskBoxImageSlice?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
    readonly WebkitMaskBoxImageSource?: readonly string[] | import("csstype").Property.MaskBorderSource | readonly import("csstype").Property.MaskBorderSource[] | undefined;
    readonly WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
    readonly WebkitMaskClip?: readonly string[] | import("csstype").Property.WebkitMaskClip | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
    readonly WebkitMaskComposite?: readonly string[] | import("csstype").Property.WebkitMaskComposite | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
    readonly WebkitMaskImage?: readonly string[] | import("csstype").Property.WebkitMaskImage | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
    readonly WebkitMaskOrigin?: readonly string[] | import("csstype").Property.WebkitMaskOrigin | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
    readonly WebkitMaskPosition?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionX?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
    readonly WebkitMaskPositionY?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
    readonly WebkitMaskRepeat?: readonly string[] | import("csstype").Property.WebkitMaskRepeat | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
    readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
    readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
    readonly WebkitMaskSize?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
    readonly WebkitMaxInlineSize?: readonly (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
    readonly WebkitOrder?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
    readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
    readonly WebkitPaddingEnd?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
    readonly WebkitPaddingStart?: readonly (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
    readonly WebkitPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
    readonly WebkitRubyPosition?: readonly string[] | import("csstype").Property.RubyPosition | readonly import("csstype").Property.RubyPosition[] | undefined;
    readonly WebkitScrollSnapType?: readonly string[] | import("csstype").Property.ScrollSnapType | readonly import("csstype").Property.ScrollSnapType[] | undefined;
    readonly WebkitShapeMargin?: readonly (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
    readonly WebkitTapHighlightColor?: readonly string[] | import("csstype").Property.WebkitTapHighlightColor | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
    readonly WebkitTextCombine?: readonly string[] | import("csstype").Property.TextCombineUpright | readonly import("csstype").Property.TextCombineUpright[] | undefined;
    readonly WebkitTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly WebkitTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly WebkitTextDecorationSkip?: readonly string[] | import("csstype").Property.TextDecorationSkip | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
    readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly WebkitTextEmphasisColor?: readonly string[] | import("csstype").Property.TextEmphasisColor | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
    readonly WebkitTextEmphasisPosition?: readonly string[] | import("csstype").Property.TextEmphasisPosition | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
    readonly WebkitTextEmphasisStyle?: readonly string[] | import("csstype").Property.TextEmphasisStyle | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
    readonly WebkitTextFillColor?: readonly string[] | import("csstype").Property.WebkitTextFillColor | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
    readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
    readonly WebkitTextSizeAdjust?: readonly string[] | import("csstype").Property.TextSizeAdjust | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
    readonly WebkitTextStrokeColor?: readonly string[] | import("csstype").Property.WebkitTextStrokeColor | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
    readonly WebkitTextStrokeWidth?: readonly string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
    readonly WebkitTextUnderlinePosition?: readonly string[] | import("csstype").Property.TextUnderlinePosition | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
    readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
    readonly WebkitTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly WebkitTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly WebkitTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly WebkitTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly WebkitTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly WebkitTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
    readonly WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
    readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly MozColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly MozColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly MozOutlineRadius?: readonly (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
    readonly msContentZoomLimit?: readonly string[] | import("csstype").Property.MsContentZoomLimit | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
    readonly msContentZoomSnap?: readonly string[] | import("csstype").Property.MsContentZoomSnap | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
    readonly msFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly msScrollLimit?: readonly string[] | import("csstype").Property.MsScrollLimit | readonly import("csstype").Property.MsScrollLimit[] | undefined;
    readonly msScrollSnapX?: readonly string[] | import("csstype").Property.MsScrollSnapX | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
    readonly msScrollSnapY?: readonly string[] | import("csstype").Property.MsScrollSnapY | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
    readonly msTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly WebkitBorderBefore?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
    readonly WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly WebkitBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly WebkitColumnRule?: readonly (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
    readonly WebkitColumns?: readonly (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
    readonly WebkitFlex?: readonly (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
    readonly WebkitFlexFlow?: readonly string[] | import("csstype").Property.FlexFlow | readonly import("csstype").Property.FlexFlow[] | undefined;
    readonly WebkitMask?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
    readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
    readonly WebkitTextEmphasis?: readonly string[] | import("csstype").Property.TextEmphasis | readonly import("csstype").Property.TextEmphasis[] | undefined;
    readonly WebkitTextStroke?: readonly (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
    readonly WebkitTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly azimuth?: readonly string[] | import("csstype").Property.Azimuth | readonly import("csstype").Property.Azimuth[] | undefined;
    readonly boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly boxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly boxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly boxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly clip?: readonly string[] | import("csstype").Property.Clip | readonly import("csstype").Property.Clip[] | undefined;
    readonly gridColumnGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
    readonly gridGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
    readonly gridRowGap?: readonly (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
    readonly imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly offsetBlock?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
    readonly offsetBlockEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
    readonly offsetBlockStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
    readonly offsetInline?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
    readonly offsetInlineEnd?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
    readonly offsetInlineStart?: readonly (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
    readonly scrollSnapCoordinate?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
    readonly scrollSnapDestination?: readonly (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
    readonly scrollSnapPointsX?: readonly string[] | import("csstype").Property.ScrollSnapPointsX | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
    readonly scrollSnapPointsY?: readonly string[] | import("csstype").Property.ScrollSnapPointsY | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
    readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
    readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
    readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly KhtmlBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly KhtmlBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
    readonly KhtmlOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
    readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
    readonly MozBackgroundClip?: readonly string[] | import("csstype").Property.BackgroundClip | readonly import("csstype").Property.BackgroundClip[] | undefined;
    readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
    readonly MozBackgroundOrigin?: readonly string[] | import("csstype").Property.BackgroundOrigin | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
    readonly MozBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly MozBorderRadius?: readonly (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusBottomright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopleft?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
    readonly MozBorderRadiusTopright?: readonly (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
    readonly MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly MozBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly MozBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly MozBoxShadow?: readonly string[] | import("csstype").Property.BoxShadow | readonly import("csstype").Property.BoxShadow[] | undefined;
    readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
    readonly MozForceBrokenImageIcon?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
    readonly MozOpacity?: import("csstype").Property.Opacity | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | readonly ((string & {}) | import("csstype").Globals)[] | undefined;
    readonly MozOutline?: readonly (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
    readonly MozOutlineColor?: readonly string[] | import("csstype").Property.OutlineColor | readonly import("csstype").Property.OutlineColor[] | undefined;
    readonly MozOutlineStyle?: readonly string[] | import("csstype").Property.OutlineStyle | readonly import("csstype").Property.OutlineStyle[] | undefined;
    readonly MozOutlineWidth?: readonly string[] | import("csstype").Property.OutlineWidth<string | number> | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
    readonly MozPerspective?: readonly string[] | import("csstype").Property.Perspective<string | number> | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
    readonly MozPerspectiveOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
    readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
    readonly MozTextDecorationColor?: readonly string[] | import("csstype").Property.TextDecorationColor | readonly import("csstype").Property.TextDecorationColor[] | undefined;
    readonly MozTextDecorationLine?: readonly string[] | import("csstype").Property.TextDecorationLine | readonly import("csstype").Property.TextDecorationLine[] | undefined;
    readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
    readonly MozTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly MozTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
    readonly MozTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly MozTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly MozTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly MozTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly MozTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
    readonly msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
    readonly OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | "none" | (string & {}) | "auto" | import("csstype").Globals | "normal" | "both" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear" | "alternate" | "alternate-reverse" | "backwards" | "forwards" | "infinite" | "paused" | "running")[] | undefined;
    readonly OAnimationDelay?: readonly string[] | import("csstype").Property.AnimationDelay<string & {}> | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
    readonly OAnimationDirection?: readonly string[] | import("csstype").Property.AnimationDirection | readonly import("csstype").Property.AnimationDirection[] | undefined;
    readonly OAnimationDuration?: readonly string[] | import("csstype").Property.AnimationDuration<string & {}> | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
    readonly OAnimationFillMode?: readonly string[] | import("csstype").Property.AnimationFillMode | readonly import("csstype").Property.AnimationFillMode[] | undefined;
    readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
    readonly OAnimationName?: readonly string[] | import("csstype").Property.AnimationName | readonly import("csstype").Property.AnimationName[] | undefined;
    readonly OAnimationPlayState?: readonly string[] | import("csstype").Property.AnimationPlayState | readonly import("csstype").Property.AnimationPlayState[] | undefined;
    readonly OAnimationTimingFunction?: readonly string[] | import("csstype").Property.AnimationTimingFunction | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
    readonly OBackgroundSize?: readonly (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
    readonly OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
    readonly OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
    readonly OObjectPosition?: readonly (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
    readonly OTabSize?: readonly (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
    readonly OTextOverflow?: readonly string[] | import("csstype").Property.TextOverflow | readonly import("csstype").Property.TextOverflow[] | undefined;
    readonly OTransform?: readonly string[] | import("csstype").Property.Transform | readonly import("csstype").Property.Transform[] | undefined;
    readonly OTransformOrigin?: readonly (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
    readonly OTransition?: readonly string[] | import("csstype").Property.Transition<string & {}> | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
    readonly OTransitionDelay?: readonly string[] | import("csstype").Property.TransitionDelay<string & {}> | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
    readonly OTransitionDuration?: readonly string[] | import("csstype").Property.TransitionDuration<string & {}> | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
    readonly OTransitionProperty?: readonly string[] | import("csstype").Property.TransitionProperty | readonly import("csstype").Property.TransitionProperty[] | undefined;
    readonly OTransitionTimingFunction?: readonly string[] | import("csstype").Property.TransitionTimingFunction | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
    readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
    readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
    readonly WebkitBoxFlex?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
    readonly WebkitBoxFlexGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
    readonly WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
    readonly WebkitBoxOrdinalGroup?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
    readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
    readonly WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
    readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
    readonly baselineShift?: readonly (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
    readonly clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
    readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
    readonly colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
    readonly dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
    readonly fill?: readonly string[] | import("csstype").Property.Fill | readonly import("csstype").Property.Fill[] | undefined;
    readonly fillOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
    readonly fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
    readonly floodColor?: readonly string[] | import("csstype").Property.FloodColor | readonly import("csstype").Property.FloodColor[] | undefined;
    readonly floodOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
    readonly glyphOrientationVertical?: readonly ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
    readonly lightingColor?: readonly string[] | import("csstype").Property.LightingColor | readonly import("csstype").Property.LightingColor[] | undefined;
    readonly marker?: readonly string[] | import("csstype").Property.Marker | readonly import("csstype").Property.Marker[] | undefined;
    readonly markerEnd?: readonly string[] | import("csstype").Property.MarkerEnd | readonly import("csstype").Property.MarkerEnd[] | undefined;
    readonly markerMid?: readonly string[] | import("csstype").Property.MarkerMid | readonly import("csstype").Property.MarkerMid[] | undefined;
    readonly markerStart?: readonly string[] | import("csstype").Property.MarkerStart | readonly import("csstype").Property.MarkerStart[] | undefined;
    readonly shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
    readonly stopColor?: readonly string[] | import("csstype").Property.StopColor | readonly import("csstype").Property.StopColor[] | undefined;
    readonly stopOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
    readonly stroke?: readonly string[] | import("csstype").Property.Stroke | readonly import("csstype").Property.Stroke[] | undefined;
    readonly strokeDasharray?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
    readonly strokeDashoffset?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
    readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
    readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
    readonly strokeMiterlimit?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
    readonly strokeOpacity?: readonly ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
    readonly strokeWidth?: readonly (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
    readonly textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
    readonly vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
    readonly ":-moz-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any()"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue"?: import("@emotion/react").CSSObject | undefined;
    readonly "::cue-region"?: import("@emotion/react").CSSObject | undefined;
    readonly "::part"?: import("@emotion/react").CSSObject | undefined;
    readonly "::slotted"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-group"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-image-pair"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-new"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition-old"?: import("@emotion/react").CSSObject | undefined;
    readonly ":dir"?: import("@emotion/react").CSSObject | undefined;
    readonly ":has"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host"?: import("@emotion/react").CSSObject | undefined;
    readonly ":host-context"?: import("@emotion/react").CSSObject | undefined;
    readonly ":is"?: import("@emotion/react").CSSObject | undefined;
    readonly ":lang"?: import("@emotion/react").CSSObject | undefined;
    readonly ":matches()"?: import("@emotion/react").CSSObject | undefined;
    readonly ":not"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":where"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-khtml-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-focusring"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-moz-ui-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":-webkit-full-screen"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-progress"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-range-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-moz-selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-browse"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-check"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-clear"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-expand"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-lower"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-fill-upper"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-reveal"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-ticks-before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-tooltip"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-ms-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-input-placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-bar"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-inner-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-progress-value"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-runnable-track"?: import("@emotion/react").CSSObject | undefined;
    readonly "::-webkit-slider-thumb"?: import("@emotion/react").CSSObject | undefined;
    readonly "::after"?: import("@emotion/react").CSSObject | undefined;
    readonly "::backdrop"?: import("@emotion/react").CSSObject | undefined;
    readonly "::before"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly "::first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly "::grammar-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::marker"?: import("@emotion/react").CSSObject | undefined;
    readonly "::placeholder"?: import("@emotion/react").CSSObject | undefined;
    readonly "::selection"?: import("@emotion/react").CSSObject | undefined;
    readonly "::spelling-error"?: import("@emotion/react").CSSObject | undefined;
    readonly "::target-text"?: import("@emotion/react").CSSObject | undefined;
    readonly "::view-transition"?: import("@emotion/react").CSSObject | undefined;
    readonly ":active"?: import("@emotion/react").CSSObject | undefined;
    readonly ":after"?: import("@emotion/react").CSSObject | undefined;
    readonly ":any-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":before"?: import("@emotion/react").CSSObject | undefined;
    readonly ":blank"?: import("@emotion/react").CSSObject | undefined;
    readonly ":checked"?: import("@emotion/react").CSSObject | undefined;
    readonly ":current"?: import("@emotion/react").CSSObject | undefined;
    readonly ":default"?: import("@emotion/react").CSSObject | undefined;
    readonly ":defined"?: import("@emotion/react").CSSObject | undefined;
    readonly ":disabled"?: import("@emotion/react").CSSObject | undefined;
    readonly ":empty"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-letter"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-line"?: import("@emotion/react").CSSObject | undefined;
    readonly ":first-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-visible"?: import("@emotion/react").CSSObject | undefined;
    readonly ":focus-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":fullscreen"?: import("@emotion/react").CSSObject | undefined;
    readonly ":future"?: import("@emotion/react").CSSObject | undefined;
    readonly ":hover"?: import("@emotion/react").CSSObject | undefined;
    readonly ":in-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":indeterminate"?: import("@emotion/react").CSSObject | undefined;
    readonly ":invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":last-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":left"?: import("@emotion/react").CSSObject | undefined;
    readonly ":link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":local-link"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":nth-last-col"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-child"?: import("@emotion/react").CSSObject | undefined;
    readonly ":only-of-type"?: import("@emotion/react").CSSObject | undefined;
    readonly ":optional"?: import("@emotion/react").CSSObject | undefined;
    readonly ":out-of-range"?: import("@emotion/react").CSSObject | undefined;
    readonly ":past"?: import("@emotion/react").CSSObject | undefined;
    readonly ":paused"?: import("@emotion/react").CSSObject | undefined;
    readonly ":picture-in-picture"?: import("@emotion/react").CSSObject | undefined;
    readonly ":placeholder-shown"?: import("@emotion/react").CSSObject | undefined;
    readonly ":playing"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-only"?: import("@emotion/react").CSSObject | undefined;
    readonly ":read-write"?: import("@emotion/react").CSSObject | undefined;
    readonly ":required"?: import("@emotion/react").CSSObject | undefined;
    readonly ":right"?: import("@emotion/react").CSSObject | undefined;
    readonly ":root"?: import("@emotion/react").CSSObject | undefined;
    readonly ":scope"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target"?: import("@emotion/react").CSSObject | undefined;
    readonly ":target-within"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-invalid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":user-valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":valid"?: import("@emotion/react").CSSObject | undefined;
    readonly ":visited"?: import("@emotion/react").CSSObject | undefined;
}];
export {};
