UNPKG

element-plus

Version:

A Component Library for Vue 3

712 lines 183 kB
import type { ComponentPublicInstance, PropType } from 'vue'; import type { ComponentSize } from 'element-plus/es/constants'; import type { Action, MessageBoxState, MessageBoxType } from './message-box.type'; declare const __VLS_export: import("vue").DefineComponent<{ buttonSize: { type: PropType<ComponentSize>; validator: (val: string) => val is ComponentSize | ""; }; modal: { type: BooleanConstructor; default: boolean; }; lockScroll: { type: BooleanConstructor; default: boolean; }; showClose: { type: BooleanConstructor; default: boolean; }; closeOnClickModal: { type: BooleanConstructor; default: boolean; }; closeOnPressEscape: { type: BooleanConstructor; default: boolean; }; closeOnHashChange: { type: BooleanConstructor; default: boolean; }; center: BooleanConstructor; draggable: BooleanConstructor; overflow: BooleanConstructor; roundButton: BooleanConstructor; container: { type: StringConstructor; default: string; }; boxType: { type: PropType<MessageBoxType>; default: string; }; }, { ns: { namespace: import("vue").ComputedRef<string>; b: (blockSuffix?: string) => string; e: (element?: string) => string; m: (modifier?: string) => string; be: (blockSuffix?: string, element?: string) => string; em: (element?: string, modifier?: string) => string; bm: (blockSuffix?: string, modifier?: string) => string; bem: (blockSuffix?: string, element?: string, modifier?: string) => string; is: { (name: string, state: boolean | undefined): string; (name: string): string; }; cssVar: (object: Record<string, string>) => Record<string, string>; cssVarName: (name: string) => string; cssVarBlock: (object: Record<string, string>) => Record<string, string>; cssVarBlockName: (name: string) => string; }; overlayEvent: { onClick: (e: MouseEvent) => void; onMousedown: (e: MouseEvent) => void; onMouseup: (e: MouseEvent) => void; }; visible: import("vue").Ref<boolean>; hasMessage: import("vue").ComputedRef<boolean>; typeClass: import("vue").ComputedRef<{ [x: string]: any; }>; contentId: import("vue").Ref<string>; inputId: import("vue").Ref<string>; btnSize: import("vue").ComputedRef<"small" | "" | "default" | "large">; iconComponent: import("vue").ComputedRef<any>; confirmButtonClasses: import("vue").ComputedRef<string>; rootRef: import("vue").Ref<HTMLElement | undefined>; focusStartRef: import("vue").Ref<HTMLElement | undefined>; headerRef: import("vue").Ref<HTMLElement | undefined>; inputRef: import("vue").Ref<ComponentPublicInstance | undefined>; isDragging: import("vue").Ref<boolean>; confirmRef: import("vue").Ref<ComponentPublicInstance | undefined>; doClose: () => void; handleClose: () => void; onCloseRequested: () => void; handleWrapperClick: () => void; handleInputEnter: (e: KeyboardEvent | Event) => void; handleAction: (action: Action) => void; t: import("element-plus/es/hooks").Translator; autofocus: import("vue").Ref<boolean>; title: import("vue").Ref<string | undefined>; message: import("vue").Ref<string>; type: import("vue").Ref<"" | "error" | "primary" | "success" | "warning" | "info">; icon: import("vue").Ref<string | import("vue").FunctionalComponent<any, {}, any, {}> | { new (...args: any[]): any; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } | { [x: string]: any; setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: { attrs: { [x: string]: unknown; }; slots: Readonly<{ [name: string]: import("vue").Slot<any> | undefined; }>; emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void); expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void; }) => any) | undefined; name?: string | undefined; template?: (string | object) | undefined; render?: Function | undefined; components?: Record<string, import("vue").Component> | undefined; directives?: Record<string, import("vue").Directive> | undefined; inheritAttrs?: boolean | undefined; emits?: any; slots?: {} | undefined; expose?: string[] | undefined; serverPrefetch?: (() => void | Promise<any>) | undefined; compilerOptions?: { isCustomElement?: ((tag: string) => boolean) | undefined; whitespace?: ("preserve" | "condense") | undefined; comments?: boolean | undefined; delimiters?: [string, string] | undefined; } | undefined; call?: ((this: unknown, ...args: unknown[]) => never) | undefined; __isFragment?: never | undefined; __isTeleport?: never | undefined; __isSuspense?: never | undefined; __defaults?: any; compatConfig?: { GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined; GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined; GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined; GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined; GLOBAL_SET?: boolean | "suppress-warning" | undefined; GLOBAL_DELETE?: boolean | "suppress-warning" | undefined; GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined; GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined; CONFIG_SILENT?: boolean | "suppress-warning" | undefined; CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined; CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined; CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined; CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined; CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined; CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined; INSTANCE_SET?: boolean | "suppress-warning" | undefined; INSTANCE_DELETE?: boolean | "suppress-warning" | undefined; INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined; INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined; INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined; INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined; INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined; INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined; INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined; OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined; OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined; OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined; OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined; WATCH_ARRAY?: boolean | "suppress-warning" | undefined; PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined; V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined; CUSTOM_DIR?: boolean | "suppress-warning" | undefined; ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined; ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined; TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined; TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined; COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined; COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined; COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined; RENDER_FUNCTION?: boolean | "suppress-warning" | undefined; FILTERS?: boolean | "suppress-warning" | undefined; PRIVATE_APIS?: boolean | "suppress-warning" | undefined; MODE?: (2 | 3 | ((comp: import("vue").Component | null) => 2 | 3)) | undefined; } | undefined; data?: ((this: any, vm: any) => any) | undefined; computed?: import("vue").ComputedOptions | undefined; methods?: import("vue").MethodOptions | undefined; watch?: { [x: string]: (string | import("vue").WatchCallback<any, any> | ({ handler: import("vue").WatchCallback | string; } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({ handler: import("vue").WatchCallback | string; } & import("vue").WatchOptions<boolean>))[]; } | undefined; provide?: import("vue").ComponentProvideOptions | undefined; inject?: {} | string[] | undefined; filters?: Record<string, Function> | undefined; mixins?: any[] | undefined; extends?: any; beforeCreate?: (() => void) | undefined; created?: (() => void) | undefined; beforeMount?: (() => void) | undefined; mounted?: (() => void) | undefined; beforeUpdate?: (() => void) | undefined; updated?: (() => void) | undefined; activated?: (() => void) | undefined; deactivated?: (() => void) | undefined; beforeDestroy?: (() => void) | undefined; beforeUnmount?: (() => void) | undefined; destroyed?: (() => void) | undefined; unmounted?: (() => void) | undefined; renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined; renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined; errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined; delimiters?: [string, string] | undefined; __differentiator?: string | number | symbol | undefined; __isBuiltIn?: boolean | undefined; __file?: string | undefined; __name?: string | undefined; beforeRouteEnter?: (import("vue-router").TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import("vue-router").NavigationGuardWithThis<undefined>) | undefined; beforeRouteUpdate?: (import("vue-router").TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import("vue-router").NavigationGuard) | undefined; beforeRouteLeave?: (import("vue-router").TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import("vue-router").NavigationGuard) | undefined; }>; closeIcon: import("vue").Ref<string | import("vue").FunctionalComponent<any, {}, any, {}> | { new (...args: any[]): any; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } | { [x: string]: any; setup?: ((this: void, props: import("@vue/shared").LooseRequired<any>, ctx: { attrs: { [x: string]: unknown; }; slots: Readonly<{ [name: string]: import("vue").Slot<any> | undefined; }>; emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void); expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void; }) => any) | undefined; name?: string | undefined; template?: (string | object) | undefined; render?: Function | undefined; components?: Record<string, import("vue").Component> | undefined; directives?: Record<string, import("vue").Directive> | undefined; inheritAttrs?: boolean | undefined; emits?: any; slots?: {} | undefined; expose?: string[] | undefined; serverPrefetch?: (() => void | Promise<any>) | undefined; compilerOptions?: { isCustomElement?: ((tag: string) => boolean) | undefined; whitespace?: ("preserve" | "condense") | undefined; comments?: boolean | undefined; delimiters?: [string, string] | undefined; } | undefined; call?: ((this: unknown, ...args: unknown[]) => never) | undefined; __isFragment?: never | undefined; __isTeleport?: never | undefined; __isSuspense?: never | undefined; __defaults?: any; compatConfig?: { GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined; GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined; GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined; GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined; GLOBAL_SET?: boolean | "suppress-warning" | undefined; GLOBAL_DELETE?: boolean | "suppress-warning" | undefined; GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined; GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined; CONFIG_SILENT?: boolean | "suppress-warning" | undefined; CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined; CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined; CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined; CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined; CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined; CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined; INSTANCE_SET?: boolean | "suppress-warning" | undefined; INSTANCE_DELETE?: boolean | "suppress-warning" | undefined; INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined; INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined; INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined; INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined; INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined; INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined; INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined; OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined; OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined; OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined; OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined; WATCH_ARRAY?: boolean | "suppress-warning" | undefined; PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined; V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined; CUSTOM_DIR?: boolean | "suppress-warning" | undefined; ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined; ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined; TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined; TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined; COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined; COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined; COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined; RENDER_FUNCTION?: boolean | "suppress-warning" | undefined; FILTERS?: boolean | "suppress-warning" | undefined; PRIVATE_APIS?: boolean | "suppress-warning" | undefined; MODE?: (2 | 3 | ((comp: import("vue").Component | null) => 2 | 3)) | undefined; } | undefined; data?: ((this: any, vm: any) => any) | undefined; computed?: import("vue").ComputedOptions | undefined; methods?: import("vue").MethodOptions | undefined; watch?: { [x: string]: (string | import("vue").WatchCallback<any, any> | ({ handler: import("vue").WatchCallback | string; } & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({ handler: import("vue").WatchCallback | string; } & import("vue").WatchOptions<boolean>))[]; } | undefined; provide?: import("vue").ComponentProvideOptions | undefined; inject?: {} | string[] | undefined; filters?: Record<string, Function> | undefined; mixins?: any[] | undefined; extends?: any; beforeCreate?: (() => void) | undefined; created?: (() => void) | undefined; beforeMount?: (() => void) | undefined; mounted?: (() => void) | undefined; beforeUpdate?: (() => void) | undefined; updated?: (() => void) | undefined; activated?: (() => void) | undefined; deactivated?: (() => void) | undefined; beforeDestroy?: (() => void) | undefined; beforeUnmount?: (() => void) | undefined; destroyed?: (() => void) | undefined; unmounted?: (() => void) | undefined; renderTracked?: ((e: import("vue").DebuggerEvent) => void) | undefined; renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | undefined; errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined; delimiters?: [string, string] | undefined; __differentiator?: string | number | symbol | undefined; __isBuiltIn?: boolean | undefined; __file?: string | undefined; __name?: string | undefined; beforeRouteEnter?: (import("vue-router").TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : import("vue-router").NavigationGuardWithThis<undefined>) | undefined; beforeRouteUpdate?: (import("vue-router").TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : import("vue-router").NavigationGuard) | undefined; beforeRouteLeave?: (import("vue-router").TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : import("vue-router").NavigationGuard) | undefined; }>; customClass: import("vue").Ref<string>; customStyle: import("vue").Ref<{ [x: `--${string}`]: string | number | undefined; accentColor?: import("csstype").Property.AccentColor | undefined; alignContent?: import("csstype").Property.AlignContent | undefined; alignItems?: import("csstype").Property.AlignItems | undefined; alignSelf?: import("csstype").Property.AlignSelf | undefined; alignTracks?: import("csstype").Property.AlignTracks | undefined; alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined; anchorName?: import("csstype").Property.AnchorName | undefined; anchorScope?: import("csstype").Property.AnchorScope | undefined; animationComposition?: import("csstype").Property.AnimationComposition | undefined; animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined; animationDirection?: import("csstype").Property.AnimationDirection | undefined; animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined; animationFillMode?: import("csstype").Property.AnimationFillMode | undefined; animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined; animationName?: import("csstype").Property.AnimationName | undefined; animationPlayState?: import("csstype").Property.AnimationPlayState | undefined; animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined; animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined; animationTimeline?: import("csstype").Property.AnimationTimeline | undefined; animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined; appearance?: import("csstype").Property.Appearance | undefined; aspectRatio?: import("csstype").Property.AspectRatio | undefined; backdropFilter?: import("csstype").Property.BackdropFilter | undefined; backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined; backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined; backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined; backgroundClip?: import("csstype").Property.BackgroundClip | undefined; backgroundColor?: import("csstype").Property.BackgroundColor | undefined; backgroundImage?: import("csstype").Property.BackgroundImage | undefined; backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined; backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined; backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined; backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined; backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined; baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined; blockSize?: import("csstype").Property.BlockSize<string | number> | undefined; borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined; borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined; borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined; borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined; borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined; borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined; borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined; borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined; borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined; borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined; borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined; borderCollapse?: import("csstype").Property.BorderCollapse | undefined; borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined; borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined; borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined; borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined; borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined; borderImageSource?: import("csstype").Property.BorderImageSource | undefined; borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined; borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined; borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined; borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined; borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined; borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined; borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined; borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined; borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined; borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined; borderRightColor?: import("csstype").Property.BorderRightColor | undefined; borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined; borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined; borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined; borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined; borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined; borderTopColor?: import("csstype").Property.BorderTopColor | undefined; borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined; borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined; borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined; borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined; bottom?: import("csstype").Property.Bottom<string | number> | undefined; boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined; boxShadow?: import("csstype").Property.BoxShadow | undefined; boxSizing?: import("csstype").Property.BoxSizing | undefined; breakAfter?: import("csstype").Property.BreakAfter | undefined; breakBefore?: import("csstype").Property.BreakBefore | undefined; breakInside?: import("csstype").Property.BreakInside | undefined; captionSide?: import("csstype").Property.CaptionSide | undefined; caretColor?: import("csstype").Property.CaretColor | undefined; caretShape?: import("csstype").Property.CaretShape | undefined; clear?: import("csstype").Property.Clear | undefined; clipPath?: import("csstype").Property.ClipPath | undefined; clipRule?: import("csstype").Property.ClipRule | undefined; color?: import("csstype").Property.Color | undefined; colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined; colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined; colorScheme?: import("csstype").Property.ColorScheme | undefined; columnCount?: import("csstype").Property.ColumnCount | undefined; columnFill?: import("csstype").Property.ColumnFill | undefined; columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined; columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined; columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined; columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined; columnSpan?: import("csstype").Property.ColumnSpan | undefined; columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined; contain?: import("csstype").Property.Contain | undefined; containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined; containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined; containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined; containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined; containerName?: import("csstype").Property.ContainerName | undefined; containerType?: import("csstype").Property.ContainerType | undefined; content?: import("csstype").Property.Content | undefined; contentVisibility?: import("csstype").Property.ContentVisibility | undefined; counterIncrement?: import("csstype").Property.CounterIncrement | undefined; counterReset?: import("csstype").Property.CounterReset | undefined; counterSet?: import("csstype").Property.CounterSet | undefined; cursor?: import("csstype").Property.Cursor | undefined; cx?: import("csstype").Property.Cx<string | number> | undefined; cy?: import("csstype").Property.Cy<string | number> | undefined; d?: import("csstype").Property.D | undefined; direction?: import("csstype").Property.Direction | undefined; display?: import("csstype").Property.Display | undefined; dominantBaseline?: import("csstype").Property.DominantBaseline | undefined; emptyCells?: import("csstype").Property.EmptyCells | undefined; fieldSizing?: import("csstype").Property.FieldSizing | undefined; fill?: import("csstype").Property.Fill | undefined; fillOpacity?: import("csstype").Property.FillOpacity | undefined; fillRule?: import("csstype").Property.FillRule | undefined; filter?: import("csstype").Property.Filter | undefined; flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined; flexDirection?: import("csstype").Property.FlexDirection | undefined; flexGrow?: import("csstype").Property.FlexGrow | undefined; flexShrink?: import("csstype").Property.FlexShrink | undefined; flexWrap?: import("csstype").Property.FlexWrap | undefined; float?: import("csstype").Property.Float | undefined; floodColor?: import("csstype").Property.FloodColor | undefined; floodOpacity?: import("csstype").Property.FloodOpacity | undefined; fontFamily?: import("csstype").Property.FontFamily | undefined; fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined; fontKerning?: import("csstype").Property.FontKerning | undefined; fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined; fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined; fontPalette?: import("csstype").Property.FontPalette | undefined; fontSize?: import("csstype").Property.FontSize<string | number> | undefined; fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined; fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined; fontStyle?: import("csstype").Property.FontStyle | undefined; fontSynthesis?: import("csstype").Property.FontSynthesis | undefined; fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined; fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined; fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined; fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined; fontVariant?: import("csstype").Property.FontVariant | undefined; fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined; fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined; fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined; fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined; fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined; fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined; fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined; fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined; fontWeight?: import("csstype").Property.FontWeight | undefined; fontWidth?: import("csstype").Property.FontWidth | undefined; forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined; gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined; gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined; gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined; gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined; gridColumnStart?: import("csstype").Property.GridColumnStart | undefined; gridRowEnd?: import("csstype").Property.GridRowEnd | undefined; gridRowStart?: import("csstype").Property.GridRowStart | undefined; gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined; gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined; gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined; hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined; height?: import("csstype").Property.Height<string | number> | undefined; hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined; hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined; hyphens?: import("csstype").Property.Hyphens | undefined; imageOrientation?: import("csstype").Property.ImageOrientation | undefined; imageRendering?: import("csstype").Property.ImageRendering | undefined; imageResolution?: import("csstype").Property.ImageResolution | undefined; initialLetter?: import("csstype").Property.InitialLetter | undefined; initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined; inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined; insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined; insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined; insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined; insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined; interpolateSize?: import("csstype").Property.InterpolateSize | undefined; isolation?: import("csstype").Property.Isolation | undefined; justifyContent?: import("csstype").Property.JustifyContent | undefined; justifyItems?: import("csstype").Property.JustifyItems | undefined; justifySelf?: import("csstype").Property.JustifySelf | undefined; justifyTracks?: import("csstype").Property.JustifyTracks | undefined; left?: import("csstype").Property.Left<string | number> | undefined; letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined; lightingColor?: import("csstype").Property.LightingColor | undefined; lineBreak?: import("csstype").Property.LineBreak | undefined; lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined; lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined; listStyleImage?: import("csstype").Property.ListStyleImage | undefined; listStylePosition?: import("csstype").Property.ListStylePosition | undefined; listStyleType?: import("csstype").Property.ListStyleType | undefined; marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined; marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined; marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined; marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined; marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined; marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined; marginRight?: import("csstype").Property.MarginRight<string | number> | undefined; marginTop?: import("csstype").Property.MarginTop<string | number> | undefined; marginTrim?: import("csstype").Property.MarginTrim | undefined; marker?: import("csstype").Property.Marker | undefined; markerEnd?: import("csstype").Property.MarkerEnd | undefined; markerMid?: import("csstype").Property.MarkerMid | undefined; markerStart?: import("csstype").Property.MarkerStart | undefined; maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined; maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined; maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined; maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined; maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined; maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined; maskClip?: import("csstype").Property.MaskClip | undefined; maskComposite?: import("csstype").Property.MaskComposite | undefined; maskImage?: import("csstype").Property.MaskImage | undefined; maskMode?: import("csstype").Property.MaskMode | undefined; maskOrigin?: import("csstype").Property.MaskOrigin | undefined; maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined; maskRepeat?: import("csstype").Property.MaskRepeat | undefined; maskSize?: import("csstype").Property.MaskSize<string | number> | undefined; maskType?: import("csstype").Property.MaskType | undefined; masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined; mathDepth?: import("csstype").Property.MathDepth | undefined; mathShift?: import("csstype").Property.MathShift | undefined; mathStyle?: import("csstype").Property.MathStyle | undefined; maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined; maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined; maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined; maxLines?: import("csstype").Property.MaxLines | undefined; maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined; minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined; minHeight?: import("csstype").Property.MinHeight<string | number> | undefined; minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined; minWidth?: import("csstype").Property.MinWidth<string | number> | undefined; mixBlendMode?: import("csstype").Property.MixBlendMode | undefined; motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined; motionPath?: import("csstype").Property.OffsetPath | undefined; motionRotation?: import("csstype").Property.OffsetRotate | undefined; objectFit?: import("csstype").Property.ObjectFit | undefined; objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined; objectViewBox?: import("csstype").Property.ObjectViewBox | undefined; offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined; offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined; offsetPath?: import("csstype").Property.OffsetPath | undefined; offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined; offsetRotate?: import("csstype").Property.OffsetRotate | undefined; offsetRotation?: import("csstype").Property.OffsetRotate | undefined; opacity?: import("csstype").Property.Opacity | undefined; order?: import("csstype").Property.Order | undefined; orphans?: import("csstype").Property.Orphans | undefined; outlineColor?: import("csstype").Property.OutlineColor | undefined; outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined; outlineStyle?: import("csstype").Property.OutlineStyle | undefined; outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined; overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined; overflowBlock?: import("csstype").Property.OverflowBlock | undefined; overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined; overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined; overflowInline?: import("csstype").Property.OverflowInline | undefined; overflowWrap?: import("csstype").Property.OverflowWrap | undefined; overflowX?: import("csstype").Property.OverflowX | undefined; overflowY?: import("csstype").Property.OverflowY | undefined; overlay?: import("csstype").Property.Overlay | undefined; overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined; overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined; overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined; overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined; paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined; paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined; paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined; paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined; paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined; paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined; paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined; paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined; page?: import("csstype").Property.Page | undefined; paintOrder?: import("csstype").Property.PaintOrder | undefined; perspective?: import("csstype").Property.Perspective<string | number> | undefined; perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined; pointerEvents?: import("csstype").Property.PointerEvents | undefined; position?: import("csstype").Property.Position | undefined; positionAnchor?: import("csstype").Property.PositionAnchor | undefined; positionArea?: import("csstype").Property.PositionArea | undefined; positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined; positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined; positionVisibility?: import("csstype").Property.PositionVisibility | undefined; printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined; quotes?: import("csstype").Property.Quotes | undefined; r?: import("csstype").Property.R<string | number> | undefined; resize?: import("csstype").Property.Resize | undefined; right?: import("csstype").Property.Right<string | number> | undefined; rotate?: import("csstype").Property.Rotate | undefined; rowGap?: import("csstype").Property.RowGap<string | number> | undefined; rubyAlign?: import("csstype").Property.RubyAlign | undefined; rubyMerge?: import("csstype").Property.RubyMerge | undefined; rubyOverhang?: import("csstype").Property.RubyOverhang | undefined; rubyPosition?: import("csstype").Property.RubyPosition | undefined; rx?: import("csstype").Property.Rx<string | number> | undefined; ry?: import("csstype").Property.Ry<string | number> | undefined; scale?: import("csstype").Property.Scale | undefined; scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined; scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined; scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined; scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined; scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined; scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined; scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined; scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined; scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined; scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined; scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined; scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined; scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined; scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined; scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined; scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined; scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined; scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined; scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined; scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined; scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined; scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined; scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined; scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined; scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined; scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined; scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined; scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined; scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined; scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined; shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined; shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined; shapeOutside?: import("csstype").Property.ShapeOutside | undefined; shapeRendering?: import("csstype").Property.ShapeRendering | undefined; speakAs?: import("csstype").Property.SpeakAs | undefined; stopColor?: import("csstype").Property.StopColor | undefined; stopOpacity?: import("csstype").Property.StopOpacity | undefined; stroke?: import("csstype").Property.Stroke | undefined; strokeColor?: import("csstype").Property.StrokeColor | undefined; strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined; strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined; strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined; strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined; strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined; strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined; strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined; tabSize?: import("csstype").Property.TabSize<string | number> | undefined; tableLayout?: import("csstype").Property.TableLayout | undefined; textAlign?: import("csstype").Property.TextAlign | undefined; textAlignLast?: import("csstype").Property.TextAlignLast | undefined; textAnchor?: import("csstype").Property.TextAnchor | undefined; textAutospace?: import("csstype").Property.TextAutospace | undefined; textBox?: import("csstype").Property.TextBox | undefined; textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined; textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined; textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined; textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined; textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined; textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined; textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined; textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined; textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined; textEmphasisColor?: import("csstype").Property.TextEmphasisC