import { ExtractPropTypes } from 'vue'; export declare const modalTipProps: { readonly type: { readonly type: StringConstructor; readonly default: "alert"; }; readonly tip: { readonly type: StringConstructor; readonly default: ""; }; readonly zIdx: { readonly type: NumberConstructor; readonly default: 3000; }; readonly modelValue: { readonly type: BooleanConstructor; readonly default: false; }; readonly width: { readonly type: StringConstructor; readonly default: "480px"; }; readonly title: { readonly type: StringConstructor; readonly default: ""; }; readonly fullscreen: { readonly type: BooleanConstructor; readonly default: false; }; readonly useHTML: { readonly type: BooleanConstructor; readonly default: false; }; readonly mask: { readonly type: BooleanConstructor; readonly default: true; }; readonly callback: FunctionConstructor; readonly beforeClose: FunctionConstructor; readonly onDestroy: FunctionConstructor; readonly onClose: FunctionConstructor; }; export type ModalTipProps = ExtractPropTypes;