import { NodeMouseEventHandler } from "../../../utils"; import { PropType } from "vue"; export declare const alertProps: () => { /** * Type of Alert styles, options: `success`, `info`, `warning`, `error` */ type: import("vue-types").VueTypeDef<"error" | "success" | "warning" | "info">; /** Whether Alert can be closed */ closable: { type: BooleanConstructor; default: undefined; }; /** Close text to show */ closeText: import("vue-types").VueTypeValidableDef; /** Content of Alert */ message: import("vue-types").VueTypeValidableDef; /** Additional content of Alert */ description: import("vue-types").VueTypeValidableDef; /** Trigger when animation ending of Alert */ afterClose: PropType<() => void>; /** Whether to show icon */ showIcon: { type: BooleanConstructor; default: undefined; }; prefixCls: StringConstructor; banner: { type: BooleanConstructor; default: undefined; }; icon: import("vue-types").VueTypeValidableDef; closeIcon: import("vue-types").VueTypeValidableDef; onClose: PropType; textColor: { type: BooleanConstructor; default: undefined; }; size: { type: StringConstructor; validator: (v: string) => boolean; }; }; export declare const api: { /** * Type of Alert styles, options: `success`, `info`, `warning`, `error` */ type: import("vue-types").VueTypeDef<"error" | "success" | "warning" | "info">; /** Whether Alert can be closed */ closable: { type: BooleanConstructor; default: undefined; }; /** Close text to show */ closeText: import("vue-types").VueTypeValidableDef; /** Content of Alert */ message: import("vue-types").VueTypeValidableDef; /** Additional content of Alert */ description: import("vue-types").VueTypeValidableDef; /** Trigger when animation ending of Alert */ afterClose: PropType<() => void>; /** Whether to show icon */ showIcon: { type: BooleanConstructor; default: undefined; }; prefixCls: StringConstructor; banner: { type: BooleanConstructor; default: undefined; }; icon: import("vue-types").VueTypeValidableDef; closeIcon: import("vue-types").VueTypeValidableDef; onClose: PropType; textColor: { type: BooleanConstructor; default: undefined; }; size: { type: StringConstructor; validator: (v: string) => boolean; }; };