import type { DefineComponent } from 'vue' interface Props { /** 标题 */ title?: string; /** 宽 */ width?: string; /** 高 */ height?: string; /** 关闭事件 */ onClose?: () => void; } declare const _default: DefineComponent export default _default