UNPKG

element-plus

Version:

A Component Library for Vue 3

724 lines (723 loc) 169 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 _default: 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: { default: boolean; type: 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>; 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" | "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: Readonly<import("@vue/shared").LooseRequired<any>>, ctx: import("vue").SetupContext<any>) => 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; expose?: string[] | undefined; serverPrefetch?: (() => 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?: {} | undefined; 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[] | { [x: string]: string | symbol | { from?: string | symbol; default?: unknown; }; [x: symbol]: string | symbol | { from?: string | symbol; default?: unknown; }; }) | 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").NavigationGuardWithThis<undefined> | undefined; beforeRouteUpdate?: import("vue-router").NavigationGuard | undefined; beforeRouteLeave?: 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: Readonly<import("@vue/shared").LooseRequired<any>>, ctx: import("vue").SetupContext<any>) => 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; expose?: string[] | undefined; serverPrefetch?: (() => 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?: {} | undefined; 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[] | { [x: string]: string | symbol | { from?: string | symbol; default?: unknown; }; [x: symbol]: string | symbol | { from?: string | symbol; default?: unknown; }; }) | 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").NavigationGuardWithThis<undefined> | undefined; beforeRouteUpdate?: import("vue-router").NavigationGuard | undefined; beforeRouteLeave?: import("vue-router").NavigationGuard | undefined; }>; customClass: import("vue").Ref<string>; customStyle: import("vue").Ref<{ [x: `--${string}`]: string | number | undefined; accentColor?: import("csstype").AccentColorProperty | undefined; alignContent?: import("csstype").AlignContentProperty | undefined; alignItems?: import("csstype").AlignItemsProperty | undefined; alignSelf?: import("csstype").AlignSelfProperty | undefined; alignTracks?: import("csstype").AlignTracksProperty | undefined; animationDelay?: import("csstype").GlobalsString | undefined; animationDirection?: import("csstype").AnimationDirectionProperty | undefined; animationDuration?: import("csstype").GlobalsString | undefined; animationFillMode?: import("csstype").AnimationFillModeProperty | undefined; animationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined; animationName?: import("csstype").AnimationNameProperty | undefined; animationPlayState?: import("csstype").AnimationPlayStateProperty | undefined; animationTimeline?: import("csstype").AnimationTimelineProperty | undefined; animationTimingFunction?: import("csstype").AnimationTimingFunctionProperty | undefined; appearance?: import("csstype").AppearanceProperty | undefined; aspectRatio?: import("csstype").AspectRatioProperty | undefined; backdropFilter?: import("csstype").BackdropFilterProperty | undefined; backfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined; backgroundAttachment?: import("csstype").BackgroundAttachmentProperty | undefined; backgroundBlendMode?: import("csstype").BackgroundBlendModeProperty | undefined; backgroundClip?: import("csstype").BackgroundClipProperty | undefined; backgroundColor?: import("csstype").BackgroundColorProperty | undefined; backgroundImage?: import("csstype").BackgroundImageProperty | undefined; backgroundOrigin?: import("csstype").BackgroundOriginProperty | undefined; backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number> | undefined; backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number> | undefined; backgroundRepeat?: import("csstype").BackgroundRepeatProperty | undefined; backgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined; blockOverflow?: import("csstype").BlockOverflowProperty | undefined; blockSize?: import("csstype").BlockSizeProperty<string | number> | undefined; borderBlockColor?: import("csstype").BorderBlockColorProperty | undefined; borderBlockEndColor?: import("csstype").BorderBlockEndColorProperty | undefined; borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty | undefined; borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined; borderBlockStartColor?: import("csstype").BorderBlockStartColorProperty | undefined; borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty | undefined; borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined; borderBlockStyle?: import("csstype").BorderBlockStyleProperty | undefined; borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number> | undefined; borderBottomColor?: import("csstype").BorderBottomColorProperty | undefined; borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined; borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined; borderBottomStyle?: import("csstype").BorderBottomStyleProperty | undefined; borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number> | undefined; borderCollapse?: import("csstype").BorderCollapseProperty | undefined; borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined; borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined; borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number> | undefined; borderImageRepeat?: import("csstype").BorderImageRepeatProperty | undefined; borderImageSlice?: import("csstype").BorderImageSliceProperty | undefined; borderImageSource?: import("csstype").BorderImageSourceProperty | undefined; borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number> | undefined; borderInlineColor?: import("csstype").BorderInlineColorProperty | undefined; borderInlineEndColor?: import("csstype").BorderInlineEndColorProperty | undefined; borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined; borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined; borderInlineStartColor?: import("csstype").BorderInlineStartColorProperty | undefined; borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined; borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined; borderInlineStyle?: import("csstype").BorderInlineStyleProperty | undefined; borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number> | undefined; borderLeftColor?: import("csstype").BorderLeftColorProperty | undefined; borderLeftStyle?: import("csstype").BorderLeftStyleProperty | undefined; borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number> | undefined; borderRightColor?: import("csstype").BorderRightColorProperty | undefined; borderRightStyle?: import("csstype").BorderRightStyleProperty | undefined; borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number> | undefined; borderSpacing?: import("csstype").BorderSpacingProperty<string | number> | undefined; borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined; borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined; borderTopColor?: import("csstype").BorderTopColorProperty | undefined; borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined; borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined; borderTopStyle?: import("csstype").BorderTopStyleProperty | undefined; borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number> | undefined; bottom?: import("csstype").BottomProperty<string | number> | undefined; boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined; boxShadow?: import("csstype").BoxShadowProperty | undefined; boxSizing?: import("csstype").BoxSizingProperty | undefined; breakAfter?: import("csstype").BreakAfterProperty | undefined; breakBefore?: import("csstype").BreakBeforeProperty | undefined; breakInside?: import("csstype").BreakInsideProperty | undefined; captionSide?: import("csstype").CaptionSideProperty | undefined; caretColor?: import("csstype").CaretColorProperty | undefined; clear?: import("csstype").ClearProperty | undefined; clipPath?: import("csstype").ClipPathProperty | undefined; color?: import("csstype").ColorProperty | undefined; colorAdjust?: import("csstype").PrintColorAdjustProperty | undefined; colorScheme?: import("csstype").ColorSchemeProperty | undefined; columnCount?: import("csstype").ColumnCountProperty | undefined; columnFill?: import("csstype").ColumnFillProperty | undefined; columnGap?: import("csstype").ColumnGapProperty<string | number> | undefined; columnRuleColor?: import("csstype").ColumnRuleColorProperty | undefined; columnRuleStyle?: import("csstype").ColumnRuleStyleProperty | undefined; columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined; columnSpan?: import("csstype").ColumnSpanProperty | undefined; columnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined; contain?: import("csstype").ContainProperty | undefined; content?: import("csstype").ContentProperty | undefined; contentVisibility?: import("csstype").ContentVisibilityProperty | undefined; counterIncrement?: import("csstype").CounterIncrementProperty | undefined; counterReset?: import("csstype").CounterResetProperty | undefined; counterSet?: import("csstype").CounterSetProperty | undefined; cursor?: import("csstype").CursorProperty | undefined; direction?: import("csstype").DirectionProperty | undefined; display?: import("csstype").DisplayProperty | undefined; emptyCells?: import("csstype").EmptyCellsProperty | undefined; filter?: import("csstype").FilterProperty | undefined; flexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined; flexDirection?: import("csstype").FlexDirectionProperty | undefined; flexGrow?: import("csstype").GlobalsNumber | undefined; flexShrink?: import("csstype").GlobalsNumber | undefined; flexWrap?: import("csstype").FlexWrapProperty | undefined; float?: import("csstype").FloatProperty | undefined; fontFamily?: import("csstype").FontFamilyProperty | undefined; fontFeatureSettings?: import("csstype").FontFeatureSettingsProperty | undefined; fontKerning?: import("csstype").FontKerningProperty | undefined; fontLanguageOverride?: import("csstype").FontLanguageOverrideProperty | undefined; fontOpticalSizing?: import("csstype").FontOpticalSizingProperty | undefined; fontSize?: import("csstype").FontSizeProperty<string | number> | undefined; fontSizeAdjust?: import("csstype").FontSizeAdjustProperty | undefined; fontSmooth?: import("csstype").FontSmoothProperty<string | number> | undefined; fontStretch?: import("csstype").FontStretchProperty | undefined; fontStyle?: import("csstype").FontStyleProperty | undefined; fontSynthesis?: import("csstype").FontSynthesisProperty | undefined; fontVariant?: import("csstype").FontVariantProperty | undefined; fontVariantAlternates?: import("csstype").FontVariantAlternatesProperty | undefined; fontVariantCaps?: import("csstype").FontVariantCapsProperty | undefined; fontVariantEastAsian?: import("csstype").FontVariantEastAsianProperty | undefined; fontVariantLigatures?: import("csstype").FontVariantLigaturesProperty | undefined; fontVariantNumeric?: import("csstype").FontVariantNumericProperty | undefined; fontVariantPosition?: import("csstype").FontVariantPositionProperty | undefined; fontVariationSettings?: import("csstype").FontVariationSettingsProperty | undefined; fontWeight?: import("csstype").FontWeightProperty | undefined; forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty | undefined; gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number> | undefined; gridAutoFlow?: import("csstype").GridAutoFlowProperty | undefined; gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number> | undefined; gridColumnEnd?: import("csstype").GridColumnEndProperty | undefined; gridColumnStart?: import("csstype").GridColumnStartProperty | undefined; gridRowEnd?: import("csstype").GridRowEndProperty | undefined; gridRowStart?: import("csstype").GridRowStartProperty | undefined; gridTemplateAreas?: import("csstype").GridTemplateAreasProperty | undefined; gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined; gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number> | undefined; hangingPunctuation?: import("csstype").HangingPunctuationProperty | undefined; height?: import("csstype").HeightProperty<string | number> | undefined; hyphenateCharacter?: import("csstype").HyphenateCharacterProperty | undefined; hyphens?: import("csstype").HyphensProperty | undefined; imageOrientation?: import("csstype").ImageOrientationProperty | undefined; imageRendering?: import("csstype").ImageRenderingProperty | undefined; imageResolution?: import("csstype").ImageResolutionProperty | undefined; initialLetter?: import("csstype").InitialLetterProperty | undefined; inlineSize?: import("csstype").InlineSizeProperty<string | number> | undefined; inputSecurity?: import("csstype").InputSecurityProperty | undefined; inset?: import("csstype").InsetProperty<string | number> | undefined; insetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined; insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined; insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined; insetInline?: import("csstype").InsetInlineProperty<string | number> | undefined; insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined; insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined; isolation?: import("csstype").IsolationProperty | undefined; justifyContent?: import("csstype").JustifyContentProperty | undefined; justifyItems?: import("csstype").JustifyItemsProperty | undefined; justifySelf?: import("csstype").JustifySelfProperty | undefined; justifyTracks?: import("csstype").JustifyTracksProperty | undefined; left?: import("csstype").LeftProperty<string | number> | undefined; letterSpacing?: import("csstype").LetterSpacingProperty<string | number> | undefined; lineBreak?: import("csstype").LineBreakProperty | undefined; lineHeight?: import("csstype").LineHeightProperty<string | number> | undefined; lineHeightStep?: import("csstype").LineHeightStepProperty<string | number> | undefined; listStyleImage?: import("csstype").ListStyleImageProperty | undefined; listStylePosition?: import("csstype").ListStylePositionProperty | undefined; listStyleType?: import("csstype").ListStyleTypeProperty | undefined; marginBlock?: import("csstype").MarginBlockProperty<string | number> | undefined; marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number> | undefined; marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number> | undefined; marginBottom?: import("csstype").MarginBottomProperty<string | number> | undefined; marginInline?: import("csstype").MarginInlineProperty<string | number> | undefined; marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined; marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined; marginLeft?: import("csstype").MarginLeftProperty<string | number> | undefined; marginRight?: import("csstype").MarginRightProperty<string | number> | undefined; marginTop?: import("csstype").MarginTopProperty<string | number> | undefined; maskBorderMode?: import("csstype").MaskBorderModeProperty | undefined; maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined; maskBorderRepeat?: import("csstype").MaskBorderRepeatProperty | undefined; maskBorderSlice?: import("csstype").MaskBorderSliceProperty | undefined; maskBorderSource?: import("csstype").MaskBorderSourceProperty | undefined; maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined; maskClip?: import("csstype").MaskClipProperty | undefined; maskComposite?: import("csstype").MaskCompositeProperty | undefined; maskImage?: import("csstype").MaskImageProperty | undefined; maskMode?: import("csstype").MaskModeProperty | undefined; maskOrigin?: import("csstype").MaskOriginProperty | undefined; maskPosition?: import("csstype").MaskPositionProperty<string | number> | undefined; maskRepeat?: import("csstype").MaskRepeatProperty | undefined; maskSize?: import("csstype").MaskSizeProperty<string | number> | undefined; maskType?: import("csstype").MaskTypeProperty | undefined; mathStyle?: import("csstype").MathStyleProperty | undefined; maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number> | undefined; maxHeight?: import("csstype").MaxHeightProperty<string | number> | undefined; maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined; maxLines?: import("csstype").MaxLinesProperty | undefined; maxWidth?: import("csstype").MaxWidthProperty<string | number> | undefined; minBlockSize?: import("csstype").MinBlockSizeProperty<string | number> | undefined; minHeight?: import("csstype").MinHeightProperty<string | number> | undefined; minInlineSize?: import("csstype").MinInlineSizeProperty<string | number> | undefined; minWidth?: import("csstype").MinWidthProperty<string | number> | undefined; mixBlendMode?: import("csstype").MixBlendModeProperty | undefined; motionDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined; motionPath?: import("csstype").OffsetPathProperty | undefined; motionRotation?: import("csstype").OffsetRotateProperty | undefined; objectFit?: import("csstype").ObjectFitProperty | undefined; objectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined; offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number> | undefined; offsetDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined; offsetPath?: import("csstype").OffsetPathProperty | undefined; offsetRotate?: import("csstype").OffsetRotateProperty | undefined; offsetRotation?: import("csstype").OffsetRotateProperty | undefined; opacity?: import("csstype").OpacityProperty | undefined; order?: import("csstype").GlobalsNumber | undefined; orphans?: import("csstype").GlobalsNumber | undefined; outlineColor?: import("csstype").OutlineColorProperty | undefined; outlineOffset?: import("csstype").OutlineOffsetProperty<string | number> | undefined; outlineStyle?: import("csstype").OutlineStyleProperty | undefined; outlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined; overflowAnchor?: import("csstype").OverflowAnchorProperty | undefined; overflowBlock?: import("csstype").OverflowBlockProperty | undefined; overflowClipBox?: import("csstype").OverflowClipBoxProperty | undefined; overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number> | undefined; overflowInline?: import("csstype").OverflowInlineProperty | undefined; overflowWrap?: import("csstype").OverflowWrapProperty | undefined; overflowX?: import("csstype").OverflowXProperty | undefined; overflowY?: import("csstype").OverflowYProperty | undefined; overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty | undefined; overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty | undefined; overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty | undefined; overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty | undefined; paddingBlock?: import("csstype").PaddingBlockProperty<string | number> | undefined; paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number> | undefined; paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number> | undefined; paddingBottom?: import("csstype").PaddingBottomProperty<string | number> | undefined; paddingInline?: import("csstype").PaddingInlineProperty<string | number> | undefined; paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined; paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined; paddingLeft?: import("csstype").PaddingLeftProperty<string | number> | undefined; paddingRight?: import("csstype").PaddingRightProperty<string | number> | undefined; paddingTop?: import("csstype").PaddingTopProperty<string | number> | undefined; pageBreakAfter?: import("csstype").PageBreakAfterProperty | undefined; pageBreakBefore?: import("csstype").PageBreakBeforeProperty | undefined; pageBreakInside?: import("csstype").PageBreakInsideProperty | undefined; paintOrder?: import("csstype").PaintOrderProperty | undefined; perspective?: import("csstype").PerspectiveProperty<string | number> | undefined; perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined; placeContent?: import("csstype").PlaceContentProperty | undefined; pointerEvents?: import("csstype").PointerEventsProperty | undefined; position?: import("csstype").PositionProperty | undefined; printColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined; quotes?: import("csstype").QuotesProperty | undefined; resize?: import("csstype").ResizeProperty | undefined; right?: import("csstype").RightProperty<string | number> | undefined; rotate?: import("csstype").RotateProperty | undefined; rowGap?: import("csstype").RowGapProperty<string | number> | undefined; rubyAlign?: import("csstype").RubyAlignProperty | undefined; rubyMerge?: import("csstype").RubyMergeProperty | undefined; rubyPosition?: import("csstype").RubyPositionProperty | undefined; scale?: import("csstype").ScaleProperty | undefined; scrollBehavior?: import("csstype").ScrollBehaviorProperty | undefined; scrollMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined; scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined; scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined; scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined; scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined; scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined; scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined; scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined; scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined; scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined; scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined; scrollPadding?: import("csstype").ScrollPaddingProperty<string | number> | undefined; scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined; scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined; scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined; scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined; scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined; scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined; scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined; scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined; scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined; scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined; scrollSnapAlign?: import("csstype").ScrollSnapAlignProperty | undefined; scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined; scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined; scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined; scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined; scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined; scrollSnapStop?: import("csstype").ScrollSnapStopProperty | undefined; scrollSnapType?: import("csstype").ScrollSnapTypeProperty | undefined; scrollbarColor?: import("csstype").ScrollbarColorProperty | undefined; scrollbarGutter?: import("csstype").ScrollbarGutterProperty | undefined; scrollbarWidth?: import("csstype").ScrollbarWidthProperty | undefined; shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty | undefined; shapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined; shapeOutside?: import("csstype").ShapeOutsideProperty | undefined; tabSize?: import("csstype").TabSizeProperty<string | number> | undefined; tableLayout?: import("csstype").TableLayoutProperty | undefined; textAlign?: import("csstype").TextAlignProperty | undefined; textAlignLast?: import("csstype").TextAlignLastProperty | undefined; textCombineUpright?: import("csstype").TextCombineUprightProperty | undefined; textDecorationColor?: import("csstype").TextDecorationColorProperty | undefined; textDecorationLine?: import("csstype").TextDecorationLineProperty | undefined; textDecorationSkip?: import("csstype").TextDecorationSkipProperty | undefined; textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty | undefined; textDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined; textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined; textDecorationWidth?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined; textEmphasisColor?: import("csstype").TextEmphasisColorProperty | undefined; textEmphasisPosition?: import("csstype").GlobalsString | undefined; textEmphasisStyle?: import("csstype").TextEmphasisStyleProperty | undefined; textIndent?: import("csstype").TextIndentProperty<string | number> | undefined; textJustify?: import("csstype").TextJustifyProperty | undefined; textOrientation?: import("csstype").TextOrientationProperty | undefined; textOverflow?: import("csstype").TextOverflowProperty | undefined; textRendering?: import("csstype").TextRenderingProperty | undefined; textShadow?: import("csstype").TextShadowProperty | undefined; textSizeAdjust?: import("csstype").TextSizeAdjustProperty | undefined; textTransform?: import("csstype").TextTransformProperty | undefined; textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined; textUnderlinePosition?: import("csstype").TextUnderlinePositionProperty | undefined; top?: import("csstype").TopProperty<string | number> | undefined; touchAction?: import("csstype").TouchActionProperty | undefined; transform?: import("csstype").TransformProperty | undefined; transformBox?: import("csstype").TransformBoxProperty | undefined; transformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined; transformStyle?: import("csstype").TransformStyleProperty | undefined; transitionDelay?: import("csstype").GlobalsString | undefined; transitionDuration?: import("csstype").GlobalsString | undefined; transitionProperty?: import("csstype").TransitionPropertyProperty | undefined; transitionTimingFunction?: import("csstype").TransitionTimingFunctionProperty | undefined; translate?: import("csstype").TranslateProperty<string | number> | undefined; unicodeBidi?: import("csstype").UnicodeBidiProperty | undefined; userSelect?: import("csstype").UserSelectProperty | undefined; verticalAlign?: import("csstype").VerticalAlignProperty<string | number> | undefined; visibility?: import("csstype").VisibilityProperty | undefined; whiteSpace?: import("csstype").WhiteSpaceProperty | undefined; widows?: import("csstype").GlobalsNumber | undefined; width?: import("csstype").WidthProperty<string | number> | undefined; willChange?: import("csstype").WillChangeProperty | undefined; wordBreak?: import("csstype").WordBreakProperty | undefined; wordSpacing?: import("csstype").WordSpacingProperty<string | number> | undefined; wordWrap?: import("csstype").WordWrapProperty | undefined; writingMode?: import("csstype").WritingModeProperty | undefined; zIndex?: import("csstype").ZIndexProperty | undefined; zoom?: import("csstype").ZoomProperty | undefined; all?: import("csstype").Globals | undefined; animation?: import("csstype").AnimationProperty | undefined; background?: import("csstype").BackgroundProperty<string | number> | undefined; backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number> | undefined; border?: import("csstype").BorderProperty<string | number> | undefined; borderBlock?: import("csstype").BorderBlockProperty<string | number> | undefined; borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number> | undefined; borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number> | undefined; borderBottom?: import("csstype").BorderBottomProperty<string | number> | undefined; borderColor?: import("csstype").BorderColorProperty | undefined; borderImage?: import("csstype").BorderImageProperty | undefined; borderInline?: import("csstype").BorderInlineProperty<string | number> | undefined; borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number> | undefined; borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number> | undefined; borderLeft?: import("csstype").BorderLeftProperty<string | number> | undefined; borderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined; borderRight?: import("csstype").BorderRightProperty<string | number> | undefined; borderStyle?: import("csstype").BorderStyleProperty | undefined; borderTop?: import("csstype").BorderTopProperty<string | number> | undefined; borderWidth?: import("csstype").BorderWidthProperty<string | number> | undefined; columnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined; columns?: import("csstype").ColumnsProperty<string | number> | undefined; flex?: import("csstype").FlexProperty<string | number> | undefined; flexFlow?: import("csstype").FlexFlowProperty | undefined; font?: import("csstype").FontProperty | undefined;