import { CSSProperties } from 'vue'; export interface Props { width?: string | number; height?: string | number; title?: string; titleStyle?: CSSProperties; content?: string; contentStyle?: CSSProperties; bodyClass?: string; bodyStyle?: CSSProperties; scrollbarProps?: object; cancelText?: string; cancelProps?: object; okText?: string; okType?: 'primary' | 'danger'; okProps?: object; footer?: boolean; destroyOnClose?: boolean; switchFullscreen?: boolean; centered?: boolean; top?: string | number; transformOrigin?: 'mouse' | 'center'; confirmLoading?: boolean; blockScroll?: boolean; keyboard?: boolean; maskClosable?: boolean; maskStyle?: CSSProperties; open?: boolean; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { title?(_: {}): any; title?(_: {}): any; default?(_: {}): any; default?(_: {}): any; footer?(_: {}): any; footer?(_: {}): any; }; refs: { dialogRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent void; "update:open": (...args: any[]) => void; ok: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly & Readonly<{ onCancel?: ((...args: any[]) => any) | undefined; "onUpdate:open"?: ((...args: any[]) => any) | undefined; onOk?: ((...args: any[]) => any) | undefined; }>, { footer: boolean; title: string; width: string | number; height: string | number; top: string | number; content: string; contentStyle: CSSProperties; keyboard: boolean; transformOrigin: "mouse" | "center"; open: boolean; scrollbarProps: object; bodyStyle: CSSProperties; titleStyle: CSSProperties; cancelText: string; bodyClass: string; cancelProps: object; okText: string; okType: "primary" | "danger"; okProps: object; destroyOnClose: boolean; switchFullscreen: boolean; centered: boolean; confirmLoading: boolean; blockScroll: boolean; maskClosable: boolean; maskStyle: CSSProperties; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { dialogRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };