import { MmUIComponent } from './component' /** Modal component */ export declare class MmModal extends MmUIComponent { /** Whether display Modal */ visible: boolean /** A Modal title, you can pass it in through a named slot */ header: string /** Modal width */ width: string /** The margin-top value in Modal CSS */ top: string /** Show mask or not */ mask: boolean /** Does body scroll lock when Modal displays */ lockScroll: boolean /** Custom class name for Modal */ customClass: string /** Can close Modal by clicking on the mask layer */ maskClosable: boolean /** Can close Modal by pressing ESC */ escClosable: boolean /** Whether the close button is displayed */ closable: boolean /** The callback before closing, will suspend Modal shutdown */ beforeClose(): void /** Align the top and bottom center */ center: boolean }