import { DefineComponent } from 'vue';
declare type ModalProps = {
    title?: string;
    content?: string | DefineComponent;
    width?: string;
    modelValue?: boolean;
    closeOnClickModal?: boolean;
    appendToBody?: boolean;
    onOk?: Function;
    onCancel?: Function;
};
declare function Confirm(options?: ModalProps): void;
export default Confirm;
