import { PropType } from 'vue';
import type { alertType } from './interface';
export declare const Props: {
    readonly type: {
        readonly type: PropType<alertType>;
        readonly default: () => alertType;
        readonly validator: (v: alertType) => boolean;
    };
    readonly message: StringConstructor;
    readonly icon: StringConstructor;
    readonly close: BooleanConstructor;
    readonly center: BooleanConstructor;
    readonly simple: BooleanConstructor;
};
