declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: {
        default?(_: {}): any;
        footer?(_: {}): any;
    };
    refs: {};
    rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<{
    readonly modelValue: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly title: {
        readonly type: StringConstructor;
        readonly default: "标题";
    };
    readonly width: {
        readonly type: [NumberConstructor, StringConstructor];
        readonly default: "35%";
    };
    readonly beforeClose: {
        readonly type: import('vue').PropType<import('./dialog-header').DialogHeaderBeforeCloseFn>;
    };
    readonly modalClass: {
        readonly type: StringConstructor;
        readonly default: "";
    };
    readonly noCancelBtn: {
        readonly type: BooleanConstructor;
        readonly default: true;
    };
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    "update:modelValue": (value: Boolean) => void;
}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
    readonly modelValue: {
        readonly type: BooleanConstructor;
        readonly default: false;
    };
    readonly title: {
        readonly type: StringConstructor;
        readonly default: "标题";
    };
    readonly width: {
        readonly type: [NumberConstructor, StringConstructor];
        readonly default: "35%";
    };
    readonly beforeClose: {
        readonly type: import('vue').PropType<import('./dialog-header').DialogHeaderBeforeCloseFn>;
    };
    readonly modalClass: {
        readonly type: StringConstructor;
        readonly default: "";
    };
    readonly noCancelBtn: {
        readonly type: BooleanConstructor;
        readonly default: true;
    };
}>> & {
    "onUpdate:modelValue"?: ((value: Boolean) => any) | undefined;
}, {
    readonly modelValue: boolean;
    readonly title: string;
    readonly width: string | number;
    readonly modalClass: string;
    readonly noCancelBtn: boolean;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
