element-plus
Version:
A Component Library for Vue 3
749 lines • 131 kB
TypeScript
import type { ComponentPublicInstance, PropType } from 'vue';
import type { Action, MessageBoxState, MessageBoxType } from './message-box.type';
declare const _default: import("vue").DefineComponent<{
buttonSize: {
type: PropType<"" | "default" | "small" | "large">;
validator: (val: string) => val is "" | "default" | "small" | "large";
};
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;
roundButton: {
default: boolean;
type: BooleanConstructor;
};
container: {
type: StringConstructor;
default: string;
};
boxType: {
type: PropType<MessageBoxType>;
default: string;
};
}, {
ns: {
namespace: import("vue").Ref<string>;
b: (blockSuffix?: string) => string;
e: (element?: string | undefined) => string;
m: (modifier?: string | undefined) => string;
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
em: (element?: string | undefined, modifier?: string | undefined) => string;
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => 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]: "" | import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
}>;
contentId: import("vue").Ref<string>;
inputId: import("vue").Ref<string>;
btnSize: import("vue").ComputedRef<"" | "default" | "small" | "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<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | undefined>;
confirmRef: import("vue").Ref<ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | undefined>;
doClose: () => void;
handleClose: () => void;
onCloseRequested: () => void;
handleWrapperClick: () => void;
handleInputEnter: (e: KeyboardEvent) => void;
handleAction: (action: Action) => void;
t: import("element-plus/es/hooks").Translator;
autofocus: import("vue").Ref<boolean>;
title: import("vue").Ref<string>;
message: import("vue").Ref<string>;
type: import("vue").Ref<"" | "success" | "warning" | "info" | "error">;
icon: import("vue").Ref<string | import("vue").FunctionalComponent<any, any> | {
new (...args: any[]): any;
__isFragment?: undefined;
__isTeleport?: undefined;
__isSuspense?: undefined;
} | {
[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<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>> | undefined;
directives?: Record<string, import("vue").Directive<any, any>> | 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?: undefined;
__isTeleport?: undefined;
__isSuspense?: 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?: 3 | 2 | ((comp: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | null) => 3 | 2) | 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: string | import("vue").WatchCallback<any, any>;
} & import("vue").WatchOptions<boolean>)) | (string | import("vue").WatchCallback<any, any> | ({
handler: string | import("vue").WatchCallback<any, any>;
} & import("vue").WatchOptions<boolean>))[];
} | undefined;
provide?: import("vue").ComponentProvideOptions | undefined;
inject?: (string[] | {
[x: string]: string | symbol | {
from?: string | symbol | undefined;
default?: unknown;
};
[x: symbol]: string | symbol | {
from?: string | symbol | undefined;
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<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | 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?: string | undefined;
alignContent?: string | undefined;
alignItems?: string | undefined;
alignSelf?: string | undefined;
alignTracks?: string | undefined;
animationDelay?: string | undefined;
animationDirection?: string | undefined;
animationDuration?: string | undefined;
animationFillMode?: string | undefined;
animationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
animationName?: string | undefined;
animationPlayState?: string | undefined;
animationTimeline?: string | undefined;
animationTimingFunction?: string | undefined;
appearance?: import("csstype").AppearanceProperty | undefined;
aspectRatio?: string | undefined;
backdropFilter?: string | undefined;
backfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
backgroundAttachment?: string | undefined;
backgroundBlendMode?: string | undefined;
backgroundClip?: string | undefined;
backgroundColor?: string | undefined;
backgroundImage?: string | undefined;
backgroundOrigin?: string | undefined;
backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
backgroundRepeat?: string | undefined;
backgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
blockOverflow?: string | undefined;
blockSize?: import("csstype").BlockSizeProperty<string | number> | undefined;
borderBlockColor?: string | undefined;
borderBlockEndColor?: string | undefined;
borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty | undefined;
borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
borderBlockStartColor?: string | 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?: string | 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?: string | undefined;
borderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
borderImageSource?: string | undefined;
borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
borderInlineColor?: string | undefined;
borderInlineEndColor?: string | undefined;
borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
borderInlineStartColor?: string | 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?: string | undefined;
borderLeftStyle?: import("csstype").BorderLeftStyleProperty | undefined;
borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
borderRightColor?: string | 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?: string | 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?: string | 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?: string | undefined;
clear?: import("csstype").ClearProperty | undefined;
clipPath?: string | undefined;
color?: string | undefined;
colorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
colorScheme?: string | undefined;
columnCount?: import("csstype").ColumnCountProperty | undefined;
columnFill?: import("csstype").ColumnFillProperty | undefined;
columnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
columnRuleColor?: string | undefined;
columnRuleStyle?: string | undefined;
columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
columnSpan?: import("csstype").ColumnSpanProperty | undefined;
columnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
contain?: string | undefined;
content?: string | undefined;
contentVisibility?: import("csstype").ContentVisibilityProperty | undefined;
counterIncrement?: string | undefined;
counterReset?: string | undefined;
counterSet?: string | undefined;
cursor?: string | undefined;
direction?: import("csstype").DirectionProperty | undefined;
display?: string | undefined;
emptyCells?: import("csstype").EmptyCellsProperty | undefined;
filter?: string | 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?: string | undefined;
fontFeatureSettings?: string | undefined;
fontKerning?: import("csstype").FontKerningProperty | undefined;
fontLanguageOverride?: string | 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?: string | undefined;
fontStyle?: string | undefined;
fontSynthesis?: string | undefined;
fontVariant?: string | undefined;
fontVariantAlternates?: string | undefined;
fontVariantCaps?: import("csstype").FontVariantCapsProperty | undefined;
fontVariantEastAsian?: string | undefined;
fontVariantLigatures?: string | undefined;
fontVariantNumeric?: string | undefined;
fontVariantPosition?: import("csstype").FontVariantPositionProperty | undefined;
fontVariationSettings?: string | undefined;
fontWeight?: import("csstype").FontWeightProperty | undefined;
forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty | undefined;
gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
gridAutoFlow?: string | 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?: string | undefined;
gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
hangingPunctuation?: string | undefined;
height?: import("csstype").HeightProperty<string | number> | undefined;
hyphenateCharacter?: string | undefined;
hyphens?: import("csstype").HyphensProperty | undefined;
imageOrientation?: string | undefined;
imageRendering?: import("csstype").ImageRenderingProperty | undefined;
imageResolution?: string | 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?: string | undefined;
justifyItems?: string | undefined;
justifySelf?: string | undefined;
justifyTracks?: string | 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?: string | undefined;
listStylePosition?: import("csstype").ListStylePositionProperty | undefined;
listStyleType?: string | 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?: string | undefined;
maskBorderSlice?: import("csstype").MaskBorderSliceProperty | undefined;
maskBorderSource?: string | undefined;
maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
maskClip?: string | undefined;
maskComposite?: string | undefined;
maskImage?: string | undefined;
maskMode?: string | undefined;
maskOrigin?: string | undefined;
maskPosition?: import("csstype").MaskPositionProperty<string | number> | undefined;
maskRepeat?: string | 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?: string | undefined;
motionRotation?: string | 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?: string | undefined;
offsetRotate?: string | undefined;
offsetRotation?: string | undefined;
opacity?: import("csstype").OpacityProperty | undefined;
order?: import("csstype").GlobalsNumber | undefined;
orphans?: import("csstype").GlobalsNumber | undefined;
outlineColor?: string | undefined;
outlineOffset?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
outlineStyle?: string | 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?: string | undefined;
perspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
placeContent?: string | undefined;
pointerEvents?: import("csstype").PointerEventsProperty | undefined;
position?: import("csstype").PositionProperty | undefined;
printColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
quotes?: string | undefined;
resize?: import("csstype").ResizeProperty | undefined;
right?: import("csstype").RightProperty<string | number> | undefined;
rotate?: string | undefined;
rowGap?: import("csstype").RowGapProperty<string | number> | undefined;
rubyAlign?: import("csstype").RubyAlignProperty | undefined;
rubyMerge?: import("csstype").RubyMergeProperty | undefined;
rubyPosition?: string | 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?: string | 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?: string | undefined;
scrollbarColor?: string | undefined;
scrollbarGutter?: string | undefined;
scrollbarWidth?: import("csstype").ScrollbarWidthProperty | undefined;
shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty | undefined;
shapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
shapeOutside?: string | undefined;
tabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
tableLayout?: import("csstype").TableLayoutProperty | undefined;
textAlign?: import("csstype").TextAlignProperty | undefined;
textAlignLast?: import("csstype").TextAlignLastProperty | undefined;
textCombineUpright?: string | undefined;
textDecorationColor?: string | undefined;
textDecorationLine?: string | undefined;
textDecorationSkip?: string | 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?: string | undefined;
textEmphasisPosition?: string | undefined;
textEmphasisStyle?: string | undefined;
textIndent?: import("csstype").TextIndentProperty<string | number> | undefined;
textJustify?: import("csstype").TextJustifyProperty | undefined;
textOrientation?: import("csstype").TextOrientationProperty | undefined;
textOverflow?: string | undefined;
textRendering?: import("csstype").TextRenderingProperty | undefined;
textShadow?: string | undefined;
textSizeAdjust?: string | undefined;
textTransform?: import("csstype").TextTransformProperty | undefined;
textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
textUnderlinePosition?: string | undefined;
top?: import("csstype").TopProperty<string | number> | undefined;
touchAction?: string | undefined;
transform?: string | undefined;
transformBox?: import("csstype").TransformBoxProperty | undefined;
transformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
transformStyle?: import("csstype").TransformStyleProperty | undefined;
transitionDelay?: string | undefined;
transitionDuration?: string | undefined;
transitionProperty?: string | undefined;
transitionTimingFunction?: string | 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?: string | 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?: string | 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?: string | 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?: string | undefined;
font?: string | undefined;
gap?: import("csstype").GapProperty<string | number> | undefined;
grid?: string | undefined;
gridArea?: import("csstype").GridAreaProperty | undefined;
gridColumn?: import("csstype").GridColumnProperty | undefined;
gridRow?: import("csstype").GridRowProperty | undefined;
gridTemplate?: string | undefined;
lineClamp?: import("csstype").LineClampProperty | undefined;
listStyle?: string | undefined;
margin?: import("csstype").MarginProperty<string | number> | undefined;
mask?: import("csstype").MaskProperty<string | number> | undefined;
maskBorder?: import("csstype").MaskBorderProperty | undefined;
motion?: import("csstype").OffsetProperty<string | number> | undefined;
offset?: import("csstype").OffsetProperty<string | number> | undefined;
outline?: import("csstype").OutlineProperty<string | number> | undefined;
overflow?: string | undefined;
overscrollBehavior?: string | undefined;
padding?: import("csstype").PaddingProperty<string | number> | undefined;
placeItems?: string | undefined;
placeSelf?: string | undefined;
textDecoration?: import("csstype").TextDecorationProperty<string | number> | undefined;
textEmphasis?: string | undefined;
transition?: string | undefined;
MozAnimationDelay?: string | undefined;
MozAnimationDirection?: string | undefined;
MozAnimationDuration?: string | undefined;
MozAnimationFillMode?: string | undefined;
MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
MozAnimationName?: string | undefined;
MozAnimationPlayState?: string | undefined;
MozAnimationTimingFunction?: string | undefined;
MozAppearance?: import("csstype").MozAppearanceProperty | undefined;
MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
MozBorderBottomColors?: string | undefined;
MozBorderEndColor?: string | undefined;
MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
MozBorderLeftColors?: string | undefined;
MozBorderRightColors?: string | undefined;
MozBorderStartColor?: string | undefined;
MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
MozBorderTopColors?: string | undefined;
MozBoxSizing?: import("csstype").BoxSizingProperty | undefined;
MozColumnCount?: import("csstype").ColumnCountProperty | undefined;
MozColumnFill?: import("csstype").ColumnFillProperty | undefined;
MozColumnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
MozColumnRuleColor?: string | undefined;
MozColumnRuleStyle?: string | undefined;
MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
MozContextProperties?: string | undefined;
MozFontFeatureSettings?: string | undefined;
MozFontLanguageOverride?: string | undefined;
MozHyphens?: import("csstype").HyphensProperty | undefined;
MozImageRegion?: string | undefined;
MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
MozOrient?: import("csstype").MozOrientProperty | undefined;
MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
MozPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
MozStackSizing?: import("csstype").MozStackSizingProperty | undefined;
MozTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
MozTextBlink?: import("csstype").MozTextBlinkProperty | undefined;
MozTextSizeAdjust?: string | undefined;
MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
MozTransformStyle?: import("csstype").TransformStyleProperty | undefined;
MozTransitionDelay?: string | undefined;
MozTransitionDuration?: string | undefined;
MozTransitionProperty?: string | undefined;
MozTransitionTimingFunction?: string | undefined;
MozUserFocus?: import("csstype").MozUserFocusProperty | undefined;
MozUserModify?: import("csstype").MozUserModifyProperty | undefined;
MozUserSelect?: import("csstype").UserSelectProperty | undefined;
MozWindowDragging?: import("csstype").MozWindowDraggingProperty | undefined;
MozWindowShadow?: import("csstype").MozWindowShadowProperty | undefined;
msAccelerator?: import("csstype").MsAcceleratorProperty | undefined;
msAlignSelf?: string | undefined;
msBlockProgression?: import("csstype").MsBlockProgressionProperty | undefined;
msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty | undefined;
msContentZoomLimitMax?: string | undefined;
msContentZoomLimitMin?: string | undefined;
msContentZoomSnapPoints?: string | undefined;
msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
msContentZooming?: import("csstype").MsContentZoomingProperty | undefined;
msFilter?: string | undefined;
msFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
msFlexPositive?: import("csstype").GlobalsNumber | undefined;
msFlowFrom?: string | undefined;
msFlowInto?: string | undefined;
msGridColumns?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
msGridRows?: import("csstype").MsGridRowsProperty<string | number> | undefined;
msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty | undefined;
msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
msHyphens?: import("csstype").HyphensProperty | undefined;
msImeAlign?: import("csstype").MsImeAlignProperty | undefined;
msJustifySelf?: string | undefined;
msLineBreak?: import("csstype").LineBreakProperty | undefined;
msOrder?: import("csstype").GlobalsNumber | undefined;
msOverflowStyle?: import("csstype").MsOverflowStyleProperty | undefined;
msOverflowX?: import("csstype").OverflowXProperty | undefined;
msOverflowY?: import("csstype").OverflowYProperty | undefined;
msScrollChaining?: import("csstype").MsScrollChainingProperty | undefined;
msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
msScrollRails?: import("csstype").MsScrollRailsProperty | undefined;
msScrollSnapPointsX?: string | undefined;
msScrollSnapPointsY?: string | undefined;
msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty | undefined;
msScrollTranslation?: import("csstype").MsScrollTranslationProperty | undefined;
msScrollbar3dlightColor?: string | undefined;
msScrollbarArrowColor?: string | undefined;
msScrollbarBaseColor?: string | undefined;
msScrollbarDarkshadowColor?: string | undefined;
msScrollbarFaceColor?: string | undefined;
msScrollbarHighlightColor?: string | undefined;
msScrollbarShadowColor?: string | undefined;
msTextAutospace?: import("csstype").MsTextAutospaceProperty | undefined;
msTextCombineHorizontal?: string | undefined;
msTextOverflow?: string | undefined;
msTouchAction?: string | undefined;
msTouchSelect?: import("csstype").MsTouchSelectProperty | undefined;
msTransform?: string | undefined;
msTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
msTransitionDelay?: string | undefined;
msTransitionDuration?: string | undefined;
msTransitionProperty?: string | undefined;
msTransitionTimingFunction?: string | undefined;
msUserSelect?: import("csstype").MsUserSelectProperty | undefined;
msWordBreak?: import("csstype").WordBreakProperty | undefined;
msWrapFlow?: import("csstype").MsWrapFlowProperty | undefined;
msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
msWrapThrough?: import("csstype").MsWrapThroughProperty | undefined;
msWritingMode?: import("csstype").WritingModeProperty | undefined;
WebkitAlignContent?: string | undefined;
WebkitAlignItems?: string | undefined;
WebkitAlignSelf?: string | undefined;
WebkitAnimationDelay?: string | undefined;
WebkitAnimationDirection?: string | undefined;
WebkitAnimationDuration?: string | undefined;
WebkitAnimationFillMode?: string | undefined;
WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
WebkitAnimationName?: string | undefined;
WebkitAnimationPlaySta