import { PropType } from 'vue';
import type { Type } from './interface';
export declare const Props: {
    readonly message: StringConstructor;
    readonly type: {
        readonly type: PropType<Type>;
        readonly default: () => Type;
        readonly validator: (v: Type) => boolean;
    };
    readonly showClose: BooleanConstructor;
    readonly time: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly offset: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly icon: StringConstructor;
    readonly round: BooleanConstructor;
};
