import { PropType } from 'vue';
import type { Position, Type } from './interface';
export declare const Props: {
    readonly title: StringConstructor;
    readonly message: StringConstructor;
    readonly time: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly position: {
        readonly type: PropType<Position>;
        readonly default: () => Position;
        readonly validator: (v: Position) => boolean;
    };
    readonly close: BooleanConstructor;
    readonly type: {
        readonly type: PropType<Type>;
        readonly validator: (v: Type) => boolean;
    };
};
