import { ExtractPropTypes } from 'vue'; export declare const modalProps: { readonly modelValue: { readonly type: BooleanConstructor; readonly default: false; }; readonly width: { readonly type: StringConstructor; readonly default: "50%"; }; readonly title: { readonly type: StringConstructor; readonly default: ""; }; readonly mode: { readonly type: StringConstructor; readonly default: "default"; }; readonly position: { readonly type: StringConstructor; readonly default: "top-center"; }; readonly fullscreen: { readonly type: BooleanConstructor; readonly default: false; }; readonly mask: { readonly type: BooleanConstructor; readonly default: true; }; readonly closeOnClickBg: { readonly type: BooleanConstructor; readonly default: false; }; readonly showClose: { readonly type: BooleanConstructor; readonly default: true; }; readonly beforeClose: FunctionConstructor; readonly onDestroy: FunctionConstructor; readonly onClose: FunctionConstructor; }; export type ModalProps = ExtractPropTypes;