import { ExtractPropTypes } from 'vue';
export declare const bigDialogProps: {
    readonly modelValue: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly title: {
        readonly type: StringConstructor;
        readonly default: "标题";
    };
    readonly customClass: {
        readonly type: StringConstructor;
        readonly default: "";
    };
};
export type BigDialogProps = ExtractPropTypes<typeof bigDialogProps>;
export declare const bigDialogEmits: {
    'update:modelValue': (value: boolean) => boolean;
    close: () => boolean;
};
export type BigDialogEmits = typeof bigDialogEmits;
