declare function __VLS_template(): {
    slots: {
        header?(_: {}): any;
        body?(_: {}): any;
        footer?(_: {}): any;
    };
    refs: {};
    attrs: Partial<{}>;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    hasBtnCancel: {
        type: BooleanConstructor;
        default: boolean;
    };
    title: {
        type: StringConstructor;
        default: string;
    };
    body: {
        type: StringConstructor;
        default: string;
    };
    btnOkText: {
        type: StringConstructor;
        default: string;
    };
    btnCancelText: {
        type: StringConstructor;
        default: string;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    confirm: (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    hasBtnCancel: {
        type: BooleanConstructor;
        default: boolean;
    };
    title: {
        type: StringConstructor;
        default: string;
    };
    body: {
        type: StringConstructor;
        default: string;
    };
    btnOkText: {
        type: StringConstructor;
        default: string;
    };
    btnCancelText: {
        type: StringConstructor;
        default: string;
    };
}>> & Readonly<{
    onConfirm?: ((...args: any[]) => any) | undefined;
}>, {
    hasBtnCancel: boolean;
    title: string;
    body: string;
    btnOkText: string;
    btnCancelText: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
