import { PropType } from 'vue';
import type { Direction } from './interface';
export declare const Props: {
    readonly modelValue: BooleanConstructor;
    readonly direction: {
        readonly type: PropType<Direction>;
        readonly default: () => Direction;
        readonly validator: (v: Direction) => boolean;
    };
    readonly size: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly title: StringConstructor;
    readonly appendToBody: BooleanConstructor;
    readonly modal: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly modalClose: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly showClose: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly showHeader: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly zIndex: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
};
