import type { DefineComponent } from 'vue' interface Props { /** 宽 */ width?: string /** 高 */ height?: string /** z-index */ zIndex?: number /** 关闭事件 */ onClose?: () => void /** 加载状态 */ loading?: boolean visible: boolean } type Slots = { header?: () => any default?: () => any center?: () => any } type Emits = { 'update:visible': (value: boolean) => any } declare const _default: DefineComponent & { new (): { $slots: Slots } } export default _default