import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize, ButtonType } from '../../button'; export declare const alertProps: { readonly type: { readonly type: PropType; readonly default: ""; }; readonly size: { readonly type: PropType; readonly default: "default"; }; readonly title: { readonly type: StringConstructor; readonly default: ""; }; readonly message: { readonly type: StringConstructor; readonly default: ""; }; readonly duration: { readonly type: NumberConstructor; readonly default: 0; }; readonly showClose: { readonly type: BooleanConstructor; readonly default: false; }; readonly showIcon: { readonly type: BooleanConstructor; readonly default: false; }; readonly prefixIcon: { readonly type: StringConstructor; readonly default: ""; }; }; export type AlertProps = ExtractPropTypes;