import { VNode } from 'vue' import { WinboxUIComponent } from './component' export interface DialogSlots { /** Content of the Dialog */ default: VNode[], /** Content of the Dialog title */ title: VNode[], /** Content of the Dialog footer */ footer: VNode[], [key: string]: VNode[] } /** Informs users while preserving the current page state */ export declare class WDialog extends WinboxUIComponent { /** Title of Dialog */ title: string /** Width of Dialog */ width: string /** Whether the Dialog takes up full screen */ fullscreen: boolean /** Value for margin-top of Dialog CSS */ top: string /** Whether a mask is displayed */ modal: boolean /** Whether to append modal to body element. If false, the modal will be appended to Dialog's parent element */ modalAppendToBody: boolean /** Whether scroll of body is disabled while Dialog is displayed */ lockScroll: boolean /** Custom class names for Dialog */ customClass: string /** Whether the Dialog can be closed by clicking the mask */ closeOnClickModal: boolean /** Whether the Dialog can be closed by pressing ESC */ closeOnPressEscape: boolean /** Whether to show a close button */ showClose: boolean /** Callback before Dialog closes, and it will prevent Dialog from closing */ beforeClose: (done: Function) => void /** Whether to align the header and footer in center */ center: boolean /** Whether to destroy elements in Dialog when closed */ destroyOnClose: boolean $slots: DialogSlots /** Dialog built-in footer */ footer: string /** Dialog built-in footer, cancel text */ cancelText: string /** Dialog has a built-in footer to determine the text */ confirmText: string /** Dialog has a built-in footer to determine the loading status of the button. It is mostly used for asynchronous operations */ confirmLoading: boolean /** The dialog is vertically centered as a whole */ verticalCenter: boolean /** Show dialog header */ withHeader: boolean }