import type { CSSProperties, ExtractPropTypes, PropType, Ref } from 'vue'; import type { ExtractPublicPropTypes, Mutable } from '../../_utils'; import type { exposedDialogEnvProps } from './DialogEnvironment'; export type DialogOptions = Mutable>, 'internalStyle'> & { class?: any; style?: string | CSSProperties; }>; export type DialogReactive = { readonly key: string; readonly destroy: () => void; } & DialogOptions; type TypeSafeDialogReactive = DialogReactive & { class?: any; style?: any; }; export interface DialogApiInjection { destroyAll: () => void; create: (options: DialogOptions) => DialogReactive; success: (options: DialogOptions) => DialogReactive; warning: (options: DialogOptions) => DialogReactive; error: (options: DialogOptions) => DialogReactive; info: (options: DialogOptions) => DialogReactive; } export interface DialogProviderInjection { clickedRef: Ref; clickPositionRef: Ref<{ x: number; y: number; } | null>; } export type DialogReactiveListInjection = Ref; interface DialogInst { hide: () => void; } export type DialogProviderInst = DialogApiInjection; export declare const dialogProviderProps: { injectionKey: StringConstructor; to: PropType; }; export type DialogProviderProps = ExtractPublicPropTypes; export declare const UDialogProvider: import("vue").DefineComponent; }>, { dialogList: Ref<{ readonly key: string; readonly destroy: () => void; bordered?: boolean | undefined; icon?: (() => import("vue").VNodeChild) | undefined; type?: "default" | "error" | "warning" | "success" | "info" | undefined; content?: string | (() => import("vue").VNodeChild) | undefined; body?: (() => import("vue").VNodeChild) | undefined; title?: string | (() => import("vue").VNodeChild) | undefined; positiveText?: string | undefined; negativeText?: string | undefined; loading?: boolean | undefined; showIcon?: boolean | undefined; closable?: boolean | undefined; onClose?: (() => Promise | unknown) | undefined; onAfterLeave?: (() => void) | undefined; iconPlacement?: import("./interface").IconPlacement | undefined; draggable?: boolean | { bounds?: "none" | undefined; } | undefined; positiveButtonProps?: { bordered?: boolean | undefined; disabled?: boolean | undefined; type?: import("../..").ButtonType | undefined; strong?: boolean | undefined; themeOverrides?: { heightTiny?: string | undefined; heightSmall?: string | undefined; heightMedium?: string | undefined; heightLarge?: string | undefined; borderRadiusTiny?: string | undefined; borderRadiusSmall?: string | undefined; borderRadiusMedium?: string | undefined; borderRadiusLarge?: string | undefined; fontSizeTiny?: string | undefined; fontSizeSmall?: string | undefined; fontSizeMedium?: string | undefined; fontSizeLarge?: string | undefined; opacityDisabled?: string | undefined; colorOpacitySecondary?: string | undefined; colorOpacitySecondaryHover?: string | undefined; colorOpacitySecondaryPressed?: string | undefined; colorOpacitySecondaryFocus?: string | undefined; colorSecondary?: string | undefined; colorSecondaryHover?: string | undefined; colorSecondaryPressed?: string | undefined; colorSecondaryFocus?: string | undefined; colorSecondaryDisabled?: string | undefined; textColorSecondaryDisabled?: string | undefined; waveColorSecondary?: string | undefined; colorTertiary?: string | undefined; colorTertiaryHover?: string | undefined; colorTertiaryPressed?: string | undefined; colorTertiaryFocus?: string | undefined; colorTertiaryDisalbed?: string | undefined; waveColorTertiary?: string | undefined; textColorTextTertiary?: string | undefined; rippleColorTertiary?: string | undefined; colorQuaternary?: string | undefined; colorQuaternaryHover?: string | undefined; colorQuaternaryPressed?: string | undefined; colorQuaternaryFocus?: string | undefined; rippleColorQuaternary?: string | undefined; waveColorQuaternary?: string | undefined; color?: string | undefined; colorHover?: string | undefined; colorPressed?: string | undefined; colorFocus?: string | undefined; colorDisabled?: string | undefined; textColor?: string | undefined; textTertiary?: string | undefined; textColorTertiary?: string | undefined; textColorHover?: string | undefined; textColorPressed?: string | undefined; textColorFocus?: string | undefined; textColorDisabled?: string | undefined; textColorText?: string | undefined; textColorTextHover?: string | undefined; textColorTextPressed?: string | undefined; textColorTextFocus?: string | undefined; textColorTextDisabled?: string | undefined; textColorGhost?: string | undefined; textColorGhostHover?: string | undefined; textColorGhostPressed?: string | undefined; textColorGhostFocus?: string | undefined; textColorGhostDisabled?: string | undefined; border?: string | undefined; borderHover?: string | undefined; borderPressed?: string | undefined; borderFocus?: string | undefined; borderDisabled?: string | undefined; rippleColor?: string | undefined; colorPrimary?: string | undefined; colorHoverPrimary?: string | undefined; colorPressedPrimary?: string | undefined; colorFocusPrimary?: string | undefined; colorDisabledPrimary?: string | undefined; waveColorPrimary?: string | undefined; textColorPrimary?: string | undefined; textColorHoverPrimary?: string | undefined; textColorPressedPrimary?: string | undefined; textColorFocusPrimary?: string | undefined; textColorDisabledPrimary?: string | undefined; textColorTextPrimary?: string | undefined; textColorTextHoverPrimary?: string | undefined; textColorTextPressedPrimary?: string | undefined; textColorTextFocusPrimary?: string | undefined; textColorTextDisabledPrimary?: string | undefined; textColorGhostPrimary?: string | undefined; textColorGhostHoverPrimary?: string | undefined; textColorGhostPressedPrimary?: string | undefined; textColorGhostFocusPrimary?: string | undefined; textColorGhostDisabledPrimary?: string | undefined; borderPrimary?: string | undefined; borderHoverPrimary?: string | undefined; borderPressedPrimary?: string | undefined; borderFocusPrimary?: string | undefined; borderDisabledPrimary?: string | undefined; rippleColorPrimary?: string | undefined; colorInfo?: string | undefined; colorHoverInfo?: string | undefined; colorPressedInfo?: string | undefined; colorFocusInfo?: string | undefined; colorDisabledInfo?: string | undefined; textColorInfo?: string | undefined; textColorHoverInfo?: string | undefined; textColorPressedInfo?: string | undefined; textColorFocusInfo?: string | undefined; textColorDisabledInfo?: string | undefined; textColorTextInfo?: string | undefined; textColorTextHoverInfo?: string | undefined; textColorTextPressedInfo?: string | undefined; textColorTextFocusInfo?: string | undefined; textColorTextDisabledInfo?: string | undefined; textColorGhostInfo?: string | undefined; textColorGhostHoverInfo?: string | undefined; textColorGhostPressedInfo?: string | undefined; textColorGhostFocusInfo?: string | undefined; textColorGhostDisabledInfo?: string | undefined; borderInfo?: string | undefined; borderHoverInfo?: string | undefined; borderPressedInfo?: string | undefined; borderFocusInfo?: string | undefined; borderDisabledInfo?: string | undefined; rippleColorInfo?: string | undefined; colorSuccess?: string | undefined; colorHoverSuccess?: string | undefined; colorPressedSuccess?: string | undefined; colorFocusSuccess?: string | undefined; colorDisabledSuccess?: string | undefined; textColorSuccess?: string | undefined; textColorHoverSuccess?: string | undefined; textColorPressedSuccess?: string | undefined; textColorFocusSuccess?: string | undefined; textColorDisabledSuccess?: string | undefined; textColorTextSuccess?: string | undefined; textColorTextHoverSuccess?: string | undefined; textColorTextPressedSuccess?: string | undefined; textColorTextFocusSuccess?: string | undefined; textColorTextDisabledSuccess?: string | undefined; textColorGhostSuccess?: string | undefined; textColorGhostHoverSuccess?: string | undefined; textColorGhostPressedSuccess?: string | undefined; textColorGhostFocusSuccess?: string | undefined; textColorGhostDisabledSuccess?: string | undefined; borderSuccess?: string | undefined; borderHoverSuccess?: string | undefined; borderPressedSuccess?: string | undefined; borderFocusSuccess?: string | undefined; borderDisabledSuccess?: string | undefined; rippleColorSuccess?: string | undefined; colorWarning?: string | undefined; colorHoverWarning?: string | undefined; colorPressedWarning?: string | undefined; colorFocusWarning?: string | undefined; colorDisabledWarning?: string | undefined; textColorWarning?: string | undefined; textColorHoverWarning?: string | undefined; textColorPressedWarning?: string | undefined; textColorFocusWarning?: string | undefined; textColorDisabledWarning?: string | undefined; textColorTextWarning?: string | undefined; textColorTextHoverWarning?: string | undefined; textColorTextPressedWarning?: string | undefined; textColorTextFocusWarning?: string | undefined; textColorTextDisabledWarning?: string | undefined; textColorGhostWarning?: string | undefined; textColorGhostHoverWarning?: string | undefined; textColorGhostPressedWarning?: string | undefined; textColorGhostFocusWarning?: string | undefined; textColorGhostDisabledWarning?: string | undefined; borderWarning?: string | undefined; borderHoverWarning?: string | undefined; borderPressedWarning?: string | undefined; borderFocusWarning?: string | undefined; borderDisabledWarning?: string | undefined; rippleColorWarning?: string | undefined; colorError?: string | undefined; colorHoverError?: string | undefined; colorPressedError?: string | undefined; colorFocusError?: string | undefined; colorDisabledError?: string | undefined; textColorError?: string | undefined; textColorHoverError?: string | undefined; textColorPressedError?: string | undefined; textColorFocusError?: string | undefined; textColorDisabledError?: string | undefined; textColorTextError?: string | undefined; textColorTextHoverError?: string | undefined; textColorTextPressedError?: string | undefined; textColorTextFocusError?: string | undefined; textColorTextDisabledError?: string | undefined; textColorGhostError?: string | undefined; textColorGhostHoverError?: string | undefined; textColorGhostPressedError?: string | undefined; textColorGhostFocusError?: string | undefined; textColorGhostDisabledError?: string | undefined; borderError?: string | undefined; borderHoverError?: string | undefined; borderPressedError?: string | undefined; borderFocusError?: string | undefined; borderDisabledError?: string | undefined; rippleColorError?: string | undefined; waveOpacity?: string | undefined; fontWeight?: string | undefined; fontWeightStrong?: string | undefined; paddingTiny?: string | undefined; paddingSmall?: string | undefined; paddingMedium?: string | undefined; paddingLarge?: string | undefined; paddingRoundTiny?: string | undefined; paddingRoundSmall?: string | undefined; paddingRoundMedium?: string | undefined; paddingRoundLarge?: string | undefined; iconMarginTiny?: string | undefined; iconMarginSmall?: string | undefined; iconMarginMedium?: string | undefined; iconMarginLarge?: string | undefined; iconSizeTiny?: string | undefined; iconSizeSmall?: string | undefined; iconSizeMedium?: string | undefined; iconSizeLarge?: string | undefined; rippleDuration?: string | undefined; peers?: { [x: string]: any; } | undefined; common?: { scrollbarColor: string; scrollbarColorHover: string; scrollbarWidth: string; scrollbarHeight: string; scrollbarBorderRadius: string; opacityDisabled: string; brand150: string; brand350: string; brand550: string; brandPrimary10: string; brandPrimary50: string; brandPrimary100: string; brandPrimary200: string; brandPrimary300: string; brandPrimary400: string; brandPrimary500: string; brandPrimary550: string; brandPrimary600: string; brandSecondary400: string; brandSecondary500: string; brandSecondary300: string; brandSecondary600: string; brandTertiary500: string; brandTertiary300: string; brandTertiary600: string; brandQuaternary500: string; brandQuaternary300: string; brandQuaternary600: string; brandQuinary500: string; brandQuinary300: string; brandQuinary600: string; brandQuinary100: string; surfacePrimary: string; surfaceSecondary: string; containerPrimary: string; containerSecondary: string; textPrimary: string; textSecondary: string; textTertiary: string; textQuaternary: string; textBrand: string; textColor2: string; elementsPrimary: string; elementsSecondary: string; elementsTertiary: string; elementsQuaternary: string; elementsQuinary: string; elementsDarkQuinary: string; elementsSenary: string; elementsOnContainer: string; transparencyPrimary: string; transparencySecondary: string; transparencyTertiary: string; transparencyQuinary: string; transparencyModal: string; staticBlack: string; staticDarkGrey: string; staticWhite: string; staticRed: string; staticOrange: string; staticGreen: string; staticDeepBlue: string; staticErrorAccent: string; infoColor: string; successColor: string; warningColor: string; errorColor: string; progressRailColor: string; popoverColor: string; shadowDepth2: string; shadowDepth: string; boxShadow2: string; fontFamily: string; fontFamilyMono: string; fontFamilyWixMadeforDisplay: string; cubicBezierEaseInOut: string; cubicBezierEaseOut: string; cubicBezierEaseIn: string; borderRadiusLarge: string; borderRadius: string; borderRadiusMedium: string; borderRadiusSmall: string; borderRadiusTiny: string; heightMini: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; heightHuge: string; fontDisplayLarge: string; fontDisplaySmall: string; fontHeadingLarge: string; fontHeadingMedium: string; fontHeadingSmall: string; fontTitleLarge: string; fontTitleMedium: string; fontTitleSmall: string; fontBodyLarge: string; fontBodyMedium: string; fontBodySmall: string; lineHeightDisplayLarge: string; lineHeightDisplaySmall: string; lineHeightHeadingLarge: string; lineHeightHeadingMedium: string; lineHeightHeadingSmall: string; lineHeightTitleLarge: string; lineHeightTitleMedium: string; lineHeightTitleSmall: string; lineHeightBodyLarge: string; lineHeightBodyMedium: string; lineHeightBodySmall: string; fontWeight: string; fontWeightStrong: string; fontWeightBold: string; iconSmall: string; iconMedium: string; iconLarge: string; iconHuge: string; closeSmall: string; closeMedium: string; closeLarge: string; closeHuge: string; closeBorderRadius: string; codeBorder: string; name: "common"; } | undefined; } | undefined; size?: import("../..").ButtonSize | undefined; onClick?: import("../../_utils").MaybeArray<(e: MouseEvent) => void> | undefined; circle?: boolean | undefined; text?: boolean | undefined; loading?: boolean | undefined; tag?: keyof HTMLElementTagNameMap | undefined; color?: string | undefined; block?: boolean | undefined; textColor?: string | undefined; round?: boolean | undefined; tertiary?: boolean | undefined; loadingSkeleton?: boolean | undefined; ghost?: boolean | undefined; secondary?: boolean | undefined; quaternary?: boolean | undefined; focusable?: boolean | undefined; keyboard?: boolean | undefined; dashed?: boolean | undefined; renderIcon?: (() => import("vue").VNodeChild) | undefined; iconPlacement?: "left" | "right" | undefined; attrType?: "submit" | "button" | "reset" | undefined; nativeFocusBehavior?: boolean | undefined; visible?: boolean | undefined; } | undefined; negativeButtonProps?: { bordered?: boolean | undefined; disabled?: boolean | undefined; type?: import("../..").ButtonType | undefined; strong?: boolean | undefined; themeOverrides?: { heightTiny?: string | undefined; heightSmall?: string | undefined; heightMedium?: string | undefined; heightLarge?: string | undefined; borderRadiusTiny?: string | undefined; borderRadiusSmall?: string | undefined; borderRadiusMedium?: string | undefined; borderRadiusLarge?: string | undefined; fontSizeTiny?: string | undefined; fontSizeSmall?: string | undefined; fontSizeMedium?: string | undefined; fontSizeLarge?: string | undefined; opacityDisabled?: string | undefined; colorOpacitySecondary?: string | undefined; colorOpacitySecondaryHover?: string | undefined; colorOpacitySecondaryPressed?: string | undefined; colorOpacitySecondaryFocus?: string | undefined; colorSecondary?: string | undefined; colorSecondaryHover?: string | undefined; colorSecondaryPressed?: string | undefined; colorSecondaryFocus?: string | undefined; colorSecondaryDisabled?: string | undefined; textColorSecondaryDisabled?: string | undefined; waveColorSecondary?: string | undefined; colorTertiary?: string | undefined; colorTertiaryHover?: string | undefined; colorTertiaryPressed?: string | undefined; colorTertiaryFocus?: string | undefined; colorTertiaryDisalbed?: string | undefined; waveColorTertiary?: string | undefined; textColorTextTertiary?: string | undefined; rippleColorTertiary?: string | undefined; colorQuaternary?: string | undefined; colorQuaternaryHover?: string | undefined; colorQuaternaryPressed?: string | undefined; colorQuaternaryFocus?: string | undefined; rippleColorQuaternary?: string | undefined; waveColorQuaternary?: string | undefined; color?: string | undefined; colorHover?: string | undefined; colorPressed?: string | undefined; colorFocus?: string | undefined; colorDisabled?: string | undefined; textColor?: string | undefined; textTertiary?: string | undefined; textColorTertiary?: string | undefined; textColorHover?: string | undefined; textColorPressed?: string | undefined; textColorFocus?: string | undefined; textColorDisabled?: string | undefined; textColorText?: string | undefined; textColorTextHover?: string | undefined; textColorTextPressed?: string | undefined; textColorTextFocus?: string | undefined; textColorTextDisabled?: string | undefined; textColorGhost?: string | undefined; textColorGhostHover?: string | undefined; textColorGhostPressed?: string | undefined; textColorGhostFocus?: string | undefined; textColorGhostDisabled?: string | undefined; border?: string | undefined; borderHover?: string | undefined; borderPressed?: string | undefined; borderFocus?: string | undefined; borderDisabled?: string | undefined; rippleColor?: string | undefined; colorPrimary?: string | undefined; colorHoverPrimary?: string | undefined; colorPressedPrimary?: string | undefined; colorFocusPrimary?: string | undefined; colorDisabledPrimary?: string | undefined; waveColorPrimary?: string | undefined; textColorPrimary?: string | undefined; textColorHoverPrimary?: string | undefined; textColorPressedPrimary?: string | undefined; textColorFocusPrimary?: string | undefined; textColorDisabledPrimary?: string | undefined; textColorTextPrimary?: string | undefined; textColorTextHoverPrimary?: string | undefined; textColorTextPressedPrimary?: string | undefined; textColorTextFocusPrimary?: string | undefined; textColorTextDisabledPrimary?: string | undefined; textColorGhostPrimary?: string | undefined; textColorGhostHoverPrimary?: string | undefined; textColorGhostPressedPrimary?: string | undefined; textColorGhostFocusPrimary?: string | undefined; textColorGhostDisabledPrimary?: string | undefined; borderPrimary?: string | undefined; borderHoverPrimary?: string | undefined; borderPressedPrimary?: string | undefined; borderFocusPrimary?: string | undefined; borderDisabledPrimary?: string | undefined; rippleColorPrimary?: string | undefined; colorInfo?: string | undefined; colorHoverInfo?: string | undefined; colorPressedInfo?: string | undefined; colorFocusInfo?: string | undefined; colorDisabledInfo?: string | undefined; textColorInfo?: string | undefined; textColorHoverInfo?: string | undefined; textColorPressedInfo?: string | undefined; textColorFocusInfo?: string | undefined; textColorDisabledInfo?: string | undefined; textColorTextInfo?: string | undefined; textColorTextHoverInfo?: string | undefined; textColorTextPressedInfo?: string | undefined; textColorTextFocusInfo?: string | undefined; textColorTextDisabledInfo?: string | undefined; textColorGhostInfo?: string | undefined; textColorGhostHoverInfo?: string | undefined; textColorGhostPressedInfo?: string | undefined; textColorGhostFocusInfo?: string | undefined; textColorGhostDisabledInfo?: string | undefined; borderInfo?: string | undefined; borderHoverInfo?: string | undefined; borderPressedInfo?: string | undefined; borderFocusInfo?: string | undefined; borderDisabledInfo?: string | undefined; rippleColorInfo?: string | undefined; colorSuccess?: string | undefined; colorHoverSuccess?: string | undefined; colorPressedSuccess?: string | undefined; colorFocusSuccess?: string | undefined; colorDisabledSuccess?: string | undefined; textColorSuccess?: string | undefined; textColorHoverSuccess?: string | undefined; textColorPressedSuccess?: string | undefined; textColorFocusSuccess?: string | undefined; textColorDisabledSuccess?: string | undefined; textColorTextSuccess?: string | undefined; textColorTextHoverSuccess?: string | undefined; textColorTextPressedSuccess?: string | undefined; textColorTextFocusSuccess?: string | undefined; textColorTextDisabledSuccess?: string | undefined; textColorGhostSuccess?: string | undefined; textColorGhostHoverSuccess?: string | undefined; textColorGhostPressedSuccess?: string | undefined; textColorGhostFocusSuccess?: string | undefined; textColorGhostDisabledSuccess?: string | undefined; borderSuccess?: string | undefined; borderHoverSuccess?: string | undefined; borderPressedSuccess?: string | undefined; borderFocusSuccess?: string | undefined; borderDisabledSuccess?: string | undefined; rippleColorSuccess?: string | undefined; colorWarning?: string | undefined; colorHoverWarning?: string | undefined; colorPressedWarning?: string | undefined; colorFocusWarning?: string | undefined; colorDisabledWarning?: string | undefined; textColorWarning?: string | undefined; textColorHoverWarning?: string | undefined; textColorPressedWarning?: string | undefined; textColorFocusWarning?: string | undefined; textColorDisabledWarning?: string | undefined; textColorTextWarning?: string | undefined; textColorTextHoverWarning?: string | undefined; textColorTextPressedWarning?: string | undefined; textColorTextFocusWarning?: string | undefined; textColorTextDisabledWarning?: string | undefined; textColorGhostWarning?: string | undefined; textColorGhostHoverWarning?: string | undefined; textColorGhostPressedWarning?: string | undefined; textColorGhostFocusWarning?: string | undefined; textColorGhostDisabledWarning?: string | undefined; borderWarning?: string | undefined; borderHoverWarning?: string | undefined; borderPressedWarning?: string | undefined; borderFocusWarning?: string | undefined; borderDisabledWarning?: string | undefined; rippleColorWarning?: string | undefined; colorError?: string | undefined; colorHoverError?: string | undefined; colorPressedError?: string | undefined; colorFocusError?: string | undefined; colorDisabledError?: string | undefined; textColorError?: string | undefined; textColorHoverError?: string | undefined; textColorPressedError?: string | undefined; textColorFocusError?: string | undefined; textColorDisabledError?: string | undefined; textColorTextError?: string | undefined; textColorTextHoverError?: string | undefined; textColorTextPressedError?: string | undefined; textColorTextFocusError?: string | undefined; textColorTextDisabledError?: string | undefined; textColorGhostError?: string | undefined; textColorGhostHoverError?: string | undefined; textColorGhostPressedError?: string | undefined; textColorGhostFocusError?: string | undefined; textColorGhostDisabledError?: string | undefined; borderError?: string | undefined; borderHoverError?: string | undefined; borderPressedError?: string | undefined; borderFocusError?: string | undefined; borderDisabledError?: string | undefined; rippleColorError?: string | undefined; waveOpacity?: string | undefined; fontWeight?: string | undefined; fontWeightStrong?: string | undefined; paddingTiny?: string | undefined; paddingSmall?: string | undefined; paddingMedium?: string | undefined; paddingLarge?: string | undefined; paddingRoundTiny?: string | undefined; paddingRoundSmall?: string | undefined; paddingRoundMedium?: string | undefined; paddingRoundLarge?: string | undefined; iconMarginTiny?: string | undefined; iconMarginSmall?: string | undefined; iconMarginMedium?: string | undefined; iconMarginLarge?: string | undefined; iconSizeTiny?: string | undefined; iconSizeSmall?: string | undefined; iconSizeMedium?: string | undefined; iconSizeLarge?: string | undefined; rippleDuration?: string | undefined; peers?: { [x: string]: any; } | undefined; common?: { scrollbarColor: string; scrollbarColorHover: string; scrollbarWidth: string; scrollbarHeight: string; scrollbarBorderRadius: string; opacityDisabled: string; brand150: string; brand350: string; brand550: string; brandPrimary10: string; brandPrimary50: string; brandPrimary100: string; brandPrimary200: string; brandPrimary300: string; brandPrimary400: string; brandPrimary500: string; brandPrimary550: string; brandPrimary600: string; brandSecondary400: string; brandSecondary500: string; brandSecondary300: string; brandSecondary600: string; brandTertiary500: string; brandTertiary300: string; brandTertiary600: string; brandQuaternary500: string; brandQuaternary300: string; brandQuaternary600: string; brandQuinary500: string; brandQuinary300: string; brandQuinary600: string; brandQuinary100: string; surfacePrimary: string; surfaceSecondary: string; containerPrimary: string; containerSecondary: string; textPrimary: string; textSecondary: string; textTertiary: string; textQuaternary: string; textBrand: string; textColor2: string; elementsPrimary: string; elementsSecondary: string; elementsTertiary: string; elementsQuaternary: string; elementsQuinary: string; elementsDarkQuinary: string; elementsSenary: string; elementsOnContainer: string; transparencyPrimary: string; transparencySecondary: string; transparencyTertiary: string; transparencyQuinary: string; transparencyModal: string; staticBlack: string; staticDarkGrey: string; staticWhite: string; staticRed: string; staticOrange: string; staticGreen: string; staticDeepBlue: string; staticErrorAccent: string; infoColor: string; successColor: string; warningColor: string; errorColor: string; progressRailColor: string; popoverColor: string; shadowDepth2: string; shadowDepth: string; boxShadow2: string; fontFamily: string; fontFamilyMono: string; fontFamilyWixMadeforDisplay: string; cubicBezierEaseInOut: string; cubicBezierEaseOut: string; cubicBezierEaseIn: string; borderRadiusLarge: string; borderRadius: string; borderRadiusMedium: string; borderRadiusSmall: string; borderRadiusTiny: string; heightMini: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; heightHuge: string; fontDisplayLarge: string; fontDisplaySmall: string; fontHeadingLarge: string; fontHeadingMedium: string; fontHeadingSmall: string; fontTitleLarge: string; fontTitleMedium: string; fontTitleSmall: string; fontBodyLarge: string; fontBodyMedium: string; fontBodySmall: string; lineHeightDisplayLarge: string; lineHeightDisplaySmall: string; lineHeightHeadingLarge: string; lineHeightHeadingMedium: string; lineHeightHeadingSmall: string; lineHeightTitleLarge: string; lineHeightTitleMedium: string; lineHeightTitleSmall: string; lineHeightBodyLarge: string; lineHeightBodyMedium: string; lineHeightBodySmall: string; fontWeight: string; fontWeightStrong: string; fontWeightBold: string; iconSmall: string; iconMedium: string; iconLarge: string; iconHuge: string; closeSmall: string; closeMedium: string; closeLarge: string; closeHuge: string; closeBorderRadius: string; codeBorder: string; name: "common"; } | undefined; } | undefined; size?: import("../..").ButtonSize | undefined; onClick?: import("../../_utils").MaybeArray<(e: MouseEvent) => void> | undefined; circle?: boolean | undefined; text?: boolean | undefined; loading?: boolean | undefined; tag?: keyof HTMLElementTagNameMap | undefined; color?: string | undefined; block?: boolean | undefined; textColor?: string | undefined; round?: boolean | undefined; tertiary?: boolean | undefined; loadingSkeleton?: boolean | undefined; ghost?: boolean | undefined; secondary?: boolean | undefined; quaternary?: boolean | undefined; focusable?: boolean | undefined; keyboard?: boolean | undefined; dashed?: boolean | undefined; renderIcon?: (() => import("vue").VNodeChild) | undefined; iconPlacement?: "left" | "right" | undefined; attrType?: "submit" | "button" | "reset" | undefined; nativeFocusBehavior?: boolean | undefined; visible?: boolean | undefined; } | undefined; action?: (() => import("vue").VNodeChild) | undefined; onPositiveClick?: ((e: MouseEvent) => Promise | unknown) | undefined; onNegativeClick?: ((e: MouseEvent) => Promise | unknown) | undefined; maskClosable?: boolean | undefined; onMaskClick?: ((e: MouseEvent) => void) | undefined; onEsc?: (() => void) | undefined; autoFocus?: boolean | undefined; closeOnEsc?: boolean | undefined; blockScroll?: boolean | undefined; onAfterEnter?: (() => void) | undefined; transformOrigin?: "mouse" | "center" | undefined; class?: any; style?: any; }[], TypeSafeDialogReactive[] | { readonly key: string; readonly destroy: () => void; bordered?: boolean | undefined; icon?: (() => import("vue").VNodeChild) | undefined; type?: "default" | "error" | "warning" | "success" | "info" | undefined; content?: string | (() => import("vue").VNodeChild) | undefined; body?: (() => import("vue").VNodeChild) | undefined; title?: string | (() => import("vue").VNodeChild) | undefined; positiveText?: string | undefined; negativeText?: string | undefined; loading?: boolean | undefined; showIcon?: boolean | undefined; closable?: boolean | undefined; onClose?: (() => Promise | unknown) | undefined; onAfterLeave?: (() => void) | undefined; iconPlacement?: import("./interface").IconPlacement | undefined; draggable?: boolean | { bounds?: "none" | undefined; } | undefined; positiveButtonProps?: { bordered?: boolean | undefined; disabled?: boolean | undefined; type?: import("../..").ButtonType | undefined; strong?: boolean | undefined; themeOverrides?: { heightTiny?: string | undefined; heightSmall?: string | undefined; heightMedium?: string | undefined; heightLarge?: string | undefined; borderRadiusTiny?: string | undefined; borderRadiusSmall?: string | undefined; borderRadiusMedium?: string | undefined; borderRadiusLarge?: string | undefined; fontSizeTiny?: string | undefined; fontSizeSmall?: string | undefined; fontSizeMedium?: string | undefined; fontSizeLarge?: string | undefined; opacityDisabled?: string | undefined; colorOpacitySecondary?: string | undefined; colorOpacitySecondaryHover?: string | undefined; colorOpacitySecondaryPressed?: string | undefined; colorOpacitySecondaryFocus?: string | undefined; colorSecondary?: string | undefined; colorSecondaryHover?: string | undefined; colorSecondaryPressed?: string | undefined; colorSecondaryFocus?: string | undefined; colorSecondaryDisabled?: string | undefined; textColorSecondaryDisabled?: string | undefined; waveColorSecondary?: string | undefined; colorTertiary?: string | undefined; colorTertiaryHover?: string | undefined; colorTertiaryPressed?: string | undefined; colorTertiaryFocus?: string | undefined; colorTertiaryDisalbed?: string | undefined; waveColorTertiary?: string | undefined; textColorTextTertiary?: string | undefined; rippleColorTertiary?: string | undefined; colorQuaternary?: string | undefined; colorQuaternaryHover?: string | undefined; colorQuaternaryPressed?: string | undefined; colorQuaternaryFocus?: string | undefined; rippleColorQuaternary?: string | undefined; waveColorQuaternary?: string | undefined; color?: string | undefined; colorHover?: string | undefined; colorPressed?: string | undefined; colorFocus?: string | undefined; colorDisabled?: string | undefined; textColor?: string | undefined; textTertiary?: string | undefined; textColorTertiary?: string | undefined; textColorHover?: string | undefined; textColorPressed?: string | undefined; textColorFocus?: string | undefined; textColorDisabled?: string | undefined; textColorText?: string | undefined; textColorTextHover?: string | undefined; textColorTextPressed?: string | undefined; textColorTextFocus?: string | undefined; textColorTextDisabled?: string | undefined; textColorGhost?: string | undefined; textColorGhostHover?: string | undefined; textColorGhostPressed?: string | undefined; textColorGhostFocus?: string | undefined; textColorGhostDisabled?: string | undefined; border?: string | undefined; borderHover?: string | undefined; borderPressed?: string | undefined; borderFocus?: string | undefined; borderDisabled?: string | undefined; rippleColor?: string | undefined; colorPrimary?: string | undefined; colorHoverPrimary?: string | undefined; colorPressedPrimary?: string | undefined; colorFocusPrimary?: string | undefined; colorDisabledPrimary?: string | undefined; waveColorPrimary?: string | undefined; textColorPrimary?: string | undefined; textColorHoverPrimary?: string | undefined; textColorPressedPrimary?: string | undefined; textColorFocusPrimary?: string | undefined; textColorDisabledPrimary?: string | undefined; textColorTextPrimary?: string | undefined; textColorTextHoverPrimary?: string | undefined; textColorTextPressedPrimary?: string | undefined; textColorTextFocusPrimary?: string | undefined; textColorTextDisabledPrimary?: string | undefined; textColorGhostPrimary?: string | undefined; textColorGhostHoverPrimary?: string | undefined; textColorGhostPressedPrimary?: string | undefined; textColorGhostFocusPrimary?: string | undefined; textColorGhostDisabledPrimary?: string | undefined; borderPrimary?: string | undefined; borderHoverPrimary?: string | undefined; borderPressedPrimary?: string | undefined; borderFocusPrimary?: string | undefined; borderDisabledPrimary?: string | undefined; rippleColorPrimary?: string | undefined; colorInfo?: string | undefined; colorHoverInfo?: string | undefined; colorPressedInfo?: string | undefined; colorFocusInfo?: string | undefined; colorDisabledInfo?: string | undefined; textColorInfo?: string | undefined; textColorHoverInfo?: string | undefined; textColorPressedInfo?: string | undefined; textColorFocusInfo?: string | undefined; textColorDisabledInfo?: string | undefined; textColorTextInfo?: string | undefined; textColorTextHoverInfo?: string | undefined; textColorTextPressedInfo?: string | undefined; textColorTextFocusInfo?: string | undefined; textColorTextDisabledInfo?: string | undefined; textColorGhostInfo?: string | undefined; textColorGhostHoverInfo?: string | undefined; textColorGhostPressedInfo?: string | undefined; textColorGhostFocusInfo?: string | undefined; textColorGhostDisabledInfo?: string | undefined; borderInfo?: string | undefined; borderHoverInfo?: string | undefined; borderPressedInfo?: string | undefined; borderFocusInfo?: string | undefined; borderDisabledInfo?: string | undefined; rippleColorInfo?: string | undefined; colorSuccess?: string | undefined; colorHoverSuccess?: string | undefined; colorPressedSuccess?: string | undefined; colorFocusSuccess?: string | undefined; colorDisabledSuccess?: string | undefined; textColorSuccess?: string | undefined; textColorHoverSuccess?: string | undefined; textColorPressedSuccess?: string | undefined; textColorFocusSuccess?: string | undefined; textColorDisabledSuccess?: string | undefined; textColorTextSuccess?: string | undefined; textColorTextHoverSuccess?: string | undefined; textColorTextPressedSuccess?: string | undefined; textColorTextFocusSuccess?: string | undefined; textColorTextDisabledSuccess?: string | undefined; textColorGhostSuccess?: string | undefined; textColorGhostHoverSuccess?: string | undefined; textColorGhostPressedSuccess?: string | undefined; textColorGhostFocusSuccess?: string | undefined; textColorGhostDisabledSuccess?: string | undefined; borderSuccess?: string | undefined; borderHoverSuccess?: string | undefined; borderPressedSuccess?: string | undefined; borderFocusSuccess?: string | undefined; borderDisabledSuccess?: string | undefined; rippleColorSuccess?: string | undefined; colorWarning?: string | undefined; colorHoverWarning?: string | undefined; colorPressedWarning?: string | undefined; colorFocusWarning?: string | undefined; colorDisabledWarning?: string | undefined; textColorWarning?: string | undefined; textColorHoverWarning?: string | undefined; textColorPressedWarning?: string | undefined; textColorFocusWarning?: string | undefined; textColorDisabledWarning?: string | undefined; textColorTextWarning?: string | undefined; textColorTextHoverWarning?: string | undefined; textColorTextPressedWarning?: string | undefined; textColorTextFocusWarning?: string | undefined; textColorTextDisabledWarning?: string | undefined; textColorGhostWarning?: string | undefined; textColorGhostHoverWarning?: string | undefined; textColorGhostPressedWarning?: string | undefined; textColorGhostFocusWarning?: string | undefined; textColorGhostDisabledWarning?: string | undefined; borderWarning?: string | undefined; borderHoverWarning?: string | undefined; borderPressedWarning?: string | undefined; borderFocusWarning?: string | undefined; borderDisabledWarning?: string | undefined; rippleColorWarning?: string | undefined; colorError?: string | undefined; colorHoverError?: string | undefined; colorPressedError?: string | undefined; colorFocusError?: string | undefined; colorDisabledError?: string | undefined; textColorError?: string | undefined; textColorHoverError?: string | undefined; textColorPressedError?: string | undefined; textColorFocusError?: string | undefined; textColorDisabledError?: string | undefined; textColorTextError?: string | undefined; textColorTextHoverError?: string | undefined; textColorTextPressedError?: string | undefined; textColorTextFocusError?: string | undefined; textColorTextDisabledError?: string | undefined; textColorGhostError?: string | undefined; textColorGhostHoverError?: string | undefined; textColorGhostPressedError?: string | undefined; textColorGhostFocusError?: string | undefined; textColorGhostDisabledError?: string | undefined; borderError?: string | undefined; borderHoverError?: string | undefined; borderPressedError?: string | undefined; borderFocusError?: string | undefined; borderDisabledError?: string | undefined; rippleColorError?: string | undefined; waveOpacity?: string | undefined; fontWeight?: string | undefined; fontWeightStrong?: string | undefined; paddingTiny?: string | undefined; paddingSmall?: string | undefined; paddingMedium?: string | undefined; paddingLarge?: string | undefined; paddingRoundTiny?: string | undefined; paddingRoundSmall?: string | undefined; paddingRoundMedium?: string | undefined; paddingRoundLarge?: string | undefined; iconMarginTiny?: string | undefined; iconMarginSmall?: string | undefined; iconMarginMedium?: string | undefined; iconMarginLarge?: string | undefined; iconSizeTiny?: string | undefined; iconSizeSmall?: string | undefined; iconSizeMedium?: string | undefined; iconSizeLarge?: string | undefined; rippleDuration?: string | undefined; peers?: { [x: string]: any; } | undefined; common?: { scrollbarColor: string; scrollbarColorHover: string; scrollbarWidth: string; scrollbarHeight: string; scrollbarBorderRadius: string; opacityDisabled: string; brand150: string; brand350: string; brand550: string; brandPrimary10: string; brandPrimary50: string; brandPrimary100: string; brandPrimary200: string; brandPrimary300: string; brandPrimary400: string; brandPrimary500: string; brandPrimary550: string; brandPrimary600: string; brandSecondary400: string; brandSecondary500: string; brandSecondary300: string; brandSecondary600: string; brandTertiary500: string; brandTertiary300: string; brandTertiary600: string; brandQuaternary500: string; brandQuaternary300: string; brandQuaternary600: string; brandQuinary500: string; brandQuinary300: string; brandQuinary600: string; brandQuinary100: string; surfacePrimary: string; surfaceSecondary: string; containerPrimary: string; containerSecondary: string; textPrimary: string; textSecondary: string; textTertiary: string; textQuaternary: string; textBrand: string; textColor2: string; elementsPrimary: string; elementsSecondary: string; elementsTertiary: string; elementsQuaternary: string; elementsQuinary: string; elementsDarkQuinary: string; elementsSenary: string; elementsOnContainer: string; transparencyPrimary: string; transparencySecondary: string; transparencyTertiary: string; transparencyQuinary: string; transparencyModal: string; staticBlack: string; staticDarkGrey: string; staticWhite: string; staticRed: string; staticOrange: string; staticGreen: string; staticDeepBlue: string; staticErrorAccent: string; infoColor: string; successColor: string; warningColor: string; errorColor: string; progressRailColor: string; popoverColor: string; shadowDepth2: string; shadowDepth: string; boxShadow2: string; fontFamily: string; fontFamilyMono: string; fontFamilyWixMadeforDisplay: string; cubicBezierEaseInOut: string; cubicBezierEaseOut: string; cubicBezierEaseIn: string; borderRadiusLarge: string; borderRadius: string; borderRadiusMedium: string; borderRadiusSmall: string; borderRadiusTiny: string; heightMini: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; heightHuge: string; fontDisplayLarge: string; fontDisplaySmall: string; fontHeadingLarge: string; fontHeadingMedium: string; fontHeadingSmall: string; fontTitleLarge: string; fontTitleMedium: string; fontTitleSmall: string; fontBodyLarge: string; fontBodyMedium: string; fontBodySmall: string; lineHeightDisplayLarge: string; lineHeightDisplaySmall: string; lineHeightHeadingLarge: string; lineHeightHeadingMedium: string; lineHeightHeadingSmall: string; lineHeightTitleLarge: string; lineHeightTitleMedium: string; lineHeightTitleSmall: string; lineHeightBodyLarge: string; lineHeightBodyMedium: string; lineHeightBodySmall: string; fontWeight: string; fontWeightStrong: string; fontWeightBold: string; iconSmall: string; iconMedium: string; iconLarge: string; iconHuge: string; closeSmall: string; closeMedium: string; closeLarge: string; closeHuge: string; closeBorderRadius: string; codeBorder: string; name: "common"; } | undefined; } | undefined; size?: import("../..").ButtonSize | undefined; onClick?: import("../../_utils").MaybeArray<(e: MouseEvent) => void> | undefined; circle?: boolean | undefined; text?: boolean | undefined; loading?: boolean | undefined; tag?: keyof HTMLElementTagNameMap | undefined; color?: string | undefined; block?: boolean | undefined; textColor?: string | undefined; round?: boolean | undefined; tertiary?: boolean | undefined; loadingSkeleton?: boolean | undefined; ghost?: boolean | undefined; secondary?: boolean | undefined; quaternary?: boolean | undefined; focusable?: boolean | undefined; keyboard?: boolean | undefined; dashed?: boolean | undefined; renderIcon?: (() => import("vue").VNodeChild) | undefined; iconPlacement?: "left" | "right" | undefined; attrType?: "submit" | "button" | "reset" | undefined; nativeFocusBehavior?: boolean | undefined; visible?: boolean | undefined; } | undefined; negativeButtonProps?: { bordered?: boolean | undefined; disabled?: boolean | undefined; type?: import("../..").ButtonType | undefined; strong?: boolean | undefined; themeOverrides?: { heightTiny?: string | undefined; heightSmall?: string | undefined; heightMedium?: string | undefined; heightLarge?: string | undefined; borderRadiusTiny?: string | undefined; borderRadiusSmall?: string | undefined; borderRadiusMedium?: string | undefined; borderRadiusLarge?: string | undefined; fontSizeTiny?: string | undefined; fontSizeSmall?: string | undefined; fontSizeMedium?: string | undefined; fontSizeLarge?: string | undefined; opacityDisabled?: string | undefined; colorOpacitySecondary?: string | undefined; colorOpacitySecondaryHover?: string | undefined; colorOpacitySecondaryPressed?: string | undefined; colorOpacitySecondaryFocus?: string | undefined; colorSecondary?: string | undefined; colorSecondaryHover?: string | undefined; colorSecondaryPressed?: string | undefined; colorSecondaryFocus?: string | undefined; colorSecondaryDisabled?: string | undefined; textColorSecondaryDisabled?: string | undefined; waveColorSecondary?: string | undefined; colorTertiary?: string | undefined; colorTertiaryHover?: string | undefined; colorTertiaryPressed?: string | undefined; colorTertiaryFocus?: string | undefined; colorTertiaryDisalbed?: string | undefined; waveColorTertiary?: string | undefined; textColorTextTertiary?: string | undefined; rippleColorTertiary?: string | undefined; colorQuaternary?: string | undefined; colorQuaternaryHover?: string | undefined; colorQuaternaryPressed?: string | undefined; colorQuaternaryFocus?: string | undefined; rippleColorQuaternary?: string | undefined; waveColorQuaternary?: string | undefined; color?: string | undefined; colorHover?: string | undefined; colorPressed?: string | undefined; colorFocus?: string | undefined; colorDisabled?: string | undefined; textColor?: string | undefined; textTertiary?: string | undefined; textColorTertiary?: string | undefined; textColorHover?: string | undefined; textColorPressed?: string | undefined; textColorFocus?: string | undefined; textColorDisabled?: string | undefined; textColorText?: string | undefined; textColorTextHover?: string | undefined; textColorTextPressed?: string | undefined; textColorTextFocus?: string | undefined; textColorTextDisabled?: string | undefined; textColorGhost?: string | undefined; textColorGhostHover?: string | undefined; textColorGhostPressed?: string | undefined; textColorGhostFocus?: string | undefined; textColorGhostDisabled?: string | undefined; border?: string | undefined; borderHover?: string | undefined; borderPressed?: string | undefined; borderFocus?: string | undefined; borderDisabled?: string | undefined; rippleColor?: string | undefined; colorPrimary?: string | undefined; colorHoverPrimary?: string | undefined; colorPressedPrimary?: string | undefined; colorFocusPrimary?: string | undefined; colorDisabledPrimary?: string | undefined; waveColorPrimary?: string | undefined; textColorPrimary?: string | undefined; textColorHoverPrimary?: string | undefined; textColorPressedPrimary?: string | undefined; textColorFocusPrimary?: string | undefined; textColorDisabledPrimary?: string | undefined; textColorTextPrimary?: string | undefined; textColorTextHoverPrimary?: string | undefined; textColorTextPressedPrimary?: string | undefined; textColorTextFocusPrimary?: string | undefined; textColorTextDisabledPrimary?: string | undefined; textColorGhostPrimary?: string | undefined; textColorGhostHoverPrimary?: string | undefined; textColorGhostPressedPrimary?: string | undefined; textColorGhostFocusPrimary?: string | undefined; textColorGhostDisabledPrimary?: string | undefined; borderPrimary?: string | undefined; borderHoverPrimary?: string | undefined; borderPressedPrimary?: string | undefined; borderFocusPrimary?: string | undefined; borderDisabledPrimary?: string | undefined; rippleColorPrimary?: string | undefined; colorInfo?: string | undefined; colorHoverInfo?: string | undefined; colorPressedInfo?: string | undefined; colorFocusInfo?: string | undefined; colorDisabledInfo?: string | undefined; textColorInfo?: string | undefined; textColorHoverInfo?: string | undefined; textColorPressedInfo?: string | undefined; textColorFocusInfo?: string | undefined; textColorDisabledInfo?: string | undefined; textColorTextInfo?: string | undefined; textColorTextHoverInfo?: string | undefined; textColorTextPressedInfo?: string | undefined; textColorTextFocusInfo?: string | undefined; textColorTextDisabledInfo?: string | undefined; textColorGhostInfo?: string | undefined; textColorGhostHoverInfo?: string | undefined; textColorGhostPressedInfo?: string | undefined; textColorGhostFocusInfo?: string | undefined; textColorGhostDisabledInfo?: string | undefined; borderInfo?: string | undefined; borderHoverInfo?: string | undefined; borderPressedInfo?: string | undefined; borderFocusInfo?: string | undefined; borderDisabledInfo?: string | undefined; rippleColorInfo?: string | undefined; colorSuccess?: string | undefined; colorHoverSuccess?: string | undefined; colorPressedSuccess?: string | undefined; colorFocusSuccess?: string | undefined; colorDisabledSuccess?: string | undefined; textColorSuccess?: string | undefined; textColorHoverSuccess?: string | undefined; textColorPressedSuccess?: string | undefined; textColorFocusSuccess?: string | undefined; textColorDisabledSuccess?: string | undefined; textColorTextSuccess?: string | undefined; textColorTextHoverSuccess?: string | undefined; textColorTextPressedSuccess?: string | undefined; textColorTextFocusSuccess?: string | undefined; textColorTextDisabledSuccess?: string | undefined; textColorGhostSuccess?: string | undefined; textColorGhostHoverSuccess?: string | undefined; textColorGhostPressedSuccess?: string | undefined; textColorGhostFocusSuccess?: string | undefined; textColorGhostDisabledSuccess?: string | undefined; borderSuccess?: string | undefined; borderHoverSuccess?: string | undefined; borderPressedSuccess?: string | undefined; borderFocusSuccess?: string | undefined; borderDisabledSuccess?: string | undefined; rippleColorSuccess?: string | undefined; colorWarning?: string | undefined; colorHoverWarning?: string | undefined; colorPressedWarning?: string | undefined; colorFocusWarning?: string | undefined; colorDisabledWarning?: string | undefined; textColorWarning?: string | undefined; textColorHoverWarning?: string | undefined; textColorPressedWarning?: string | undefined; textColorFocusWarning?: string | undefined; textColorDisabledWarning?: string | undefined; textColorTextWarning?: string | undefined; textColorTextHoverWarning?: string | undefined; textColorTextPressedWarning?: string | undefined; textColorTextFocusWarning?: string | undefined; textColorTextDisabledWarning?: string | undefined; textColorGhostWarning?: string | undefined; textColorGhostHoverWarning?: string | undefined; textColorGhostPressedWarning?: string | undefined; textColorGhostFocusWarning?: string | undefined; textColorGhostDisabledWarning?: string | undefined; borderWarning?: string | undefined; borderHoverWarning?: string | undefined; borderPressedWarning?: string | undefined; borderFocusWarning?: string | undefined; borderDisabledWarning?: string | undefined; rippleColorWarning?: string | undefined; colorError?: string | undefined; colorHoverError?: string | undefined; colorPressedError?: string | undefined; colorFocusError?: string | undefined; colorDisabledError?: string | undefined; textColorError?: string | undefined; textColorHoverError?: string | undefined; textColorPressedError?: string | undefined; textColorFocusError?: string | undefined; textColorDisabledError?: string | undefined; textColorTextError?: string | undefined; textColorTextHoverError?: string | undefined; textColorTextPressedError?: string | undefined; textColorTextFocusError?: string | undefined; textColorTextDisabledError?: string | undefined; textColorGhostError?: string | undefined; textColorGhostHoverError?: string | undefined; textColorGhostPressedError?: string | undefined; textColorGhostFocusError?: string | undefined; textColorGhostDisabledError?: string | undefined; borderError?: string | undefined; borderHoverError?: string | undefined; borderPressedError?: string | undefined; borderFocusError?: string | undefined; borderDisabledError?: string | undefined; rippleColorError?: string | undefined; waveOpacity?: string | undefined; fontWeight?: string | undefined; fontWeightStrong?: string | undefined; paddingTiny?: string | undefined; paddingSmall?: string | undefined; paddingMedium?: string | undefined; paddingLarge?: string | undefined; paddingRoundTiny?: string | undefined; paddingRoundSmall?: string | undefined; paddingRoundMedium?: string | undefined; paddingRoundLarge?: string | undefined; iconMarginTiny?: string | undefined; iconMarginSmall?: string | undefined; iconMarginMedium?: string | undefined; iconMarginLarge?: string | undefined; iconSizeTiny?: string | undefined; iconSizeSmall?: string | undefined; iconSizeMedium?: string | undefined; iconSizeLarge?: string | undefined; rippleDuration?: string | undefined; peers?: { [x: string]: any; } | undefined; common?: { scrollbarColor: string; scrollbarColorHover: string; scrollbarWidth: string; scrollbarHeight: string; scrollbarBorderRadius: string; opacityDisabled: string; brand150: string; brand350: string; brand550: string; brandPrimary10: string; brandPrimary50: string; brandPrimary100: string; brandPrimary200: string; brandPrimary300: string; brandPrimary400: string; brandPrimary500: string; brandPrimary550: string; brandPrimary600: string; brandSecondary400: string; brandSecondary500: string; brandSecondary300: string; brandSecondary600: string; brandTertiary500: string; brandTertiary300: string; brandTertiary600: string; brandQuaternary500: string; brandQuaternary300: string; brandQuaternary600: string; brandQuinary500: string; brandQuinary300: string; brandQuinary600: string; brandQuinary100: string; surfacePrimary: string; surfaceSecondary: string; containerPrimary: string; containerSecondary: string; textPrimary: string; textSecondary: string; textTertiary: string; textQuaternary: string; textBrand: string; textColor2: string; elementsPrimary: string; elementsSecondary: string; elementsTertiary: string; elementsQuaternary: string; elementsQuinary: string; elementsDarkQuinary: string; elementsSenary: string; elementsOnContainer: string; transparencyPrimary: string; transparencySecondary: string; transparencyTertiary: string; transparencyQuinary: string; transparencyModal: string; staticBlack: string; staticDarkGrey: string; staticWhite: string; staticRed: string; staticOrange: string; staticGreen: string; staticDeepBlue: string; staticErrorAccent: string; infoColor: string; successColor: string; warningColor: string; errorColor: string; progressRailColor: string; popoverColor: string; shadowDepth2: string; shadowDepth: string; boxShadow2: string; fontFamily: string; fontFamilyMono: string; fontFamilyWixMadeforDisplay: string; cubicBezierEaseInOut: string; cubicBezierEaseOut: string; cubicBezierEaseIn: string; borderRadiusLarge: string; borderRadius: string; borderRadiusMedium: string; borderRadiusSmall: string; borderRadiusTiny: string; heightMini: string; heightTiny: string; heightSmall: string; heightMedium: string; heightLarge: string; heightHuge: string; fontDisplayLarge: string; fontDisplaySmall: string; fontHeadingLarge: string; fontHeadingMedium: string; fontHeadingSmall: string; fontTitleLarge: string; fontTitleMedium: string; fontTitleSmall: string; fontBodyLarge: string; fontBodyMedium: string; fontBodySmall: string; lineHeightDisplayLarge: string; lineHeightDisplaySmall: string; lineHeightHeadingLarge: string; lineHeightHeadingMedium: string; lineHeightHeadingSmall: string; lineHeightTitleLarge: string; lineHeightTitleMedium: string; lineHeightTitleSmall: string; lineHeightBodyLarge: string; lineHeightBodyMedium: string; lineHeightBodySmall: string; fontWeight: string; fontWeightStrong: string; fontWeightBold: string; iconSmall: string; iconMedium: string; iconLarge: string; iconHuge: string; closeSmall: string; closeMedium: string; closeLarge: string; closeHuge: string; closeBorderRadius: string; codeBorder: string; name: "common"; } | undefined; } | undefined; size?: import("../..").ButtonSize | undefined; onClick?: import("../../_utils").MaybeArray<(e: MouseEvent) => void> | undefined; circle?: boolean | undefined; text?: boolean | undefined; loading?: boolean | undefined; tag?: keyof HTMLElementTagNameMap | undefined; color?: string | undefined; block?: boolean | undefined; textColor?: string | undefined; round?: boolean | undefined; tertiary?: boolean | undefined; loadingSkeleton?: boolean | undefined; ghost?: boolean | undefined; secondary?: boolean | undefined; quaternary?: boolean | undefined; focusable?: boolean | undefined; keyboard?: boolean | undefined; dashed?: boolean | undefined; renderIcon?: (() => import("vue").VNodeChild) | undefined; iconPlacement?: "left" | "right" | undefined; attrType?: "submit" | "button" | "reset" | undefined; nativeFocusBehavior?: boolean | undefined; visible?: boolean | undefined; } | undefined; action?: (() => import("vue").VNodeChild) | undefined; onPositiveClick?: ((e: MouseEvent) => Promise | unknown) | undefined; onNegativeClick?: ((e: MouseEvent) => Promise | unknown) | undefined; maskClosable?: boolean | undefined; onMaskClick?: ((e: MouseEvent) => void) | undefined; onEsc?: (() => void) | undefined; autoFocus?: boolean | undefined; closeOnEsc?: boolean | undefined; blockScroll?: boolean | undefined; onAfterEnter?: (() => void) | undefined; transformOrigin?: "mouse" | "center" | undefined; class?: any; style?: any; }[]>; dialogInstRefs: Record; handleAfterLeave: (key: string) => void; create: (options?: DialogOptions) => DialogReactive; destroyAll: () => void; info: (options: DialogOptions) => DialogReactive; success: (options: DialogOptions) => DialogReactive; warning: (options: DialogOptions) => DialogReactive; error: (options: DialogOptions) => DialogReactive; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export {};