import { ExtractPropTypes, PropType } from 'vue'; import { ButtonType, ButtonSize } from '../../button'; export declare const messageProps: { readonly id: { readonly type: StringConstructor; readonly default: ""; }; readonly type: { readonly type: PropType; readonly default: ""; }; readonly size: { readonly type: PropType; readonly default: "default"; }; readonly offset: { readonly type: NumberConstructor; readonly default: 20; }; readonly message: { readonly type: StringConstructor; readonly required: true; }; readonly duration: { readonly type: NumberConstructor; readonly default: 3000; }; readonly showClose: { readonly type: BooleanConstructor; readonly default: false; }; readonly full: { readonly type: BooleanConstructor; readonly default: false; }; readonly useHTML: { readonly type: BooleanConstructor; readonly default: false; }; readonly prefixIcon: { readonly type: StringConstructor; readonly default: ""; }; readonly onDestroy: FunctionConstructor; readonly onClose: FunctionConstructor; readonly onResize: FunctionConstructor; }; export type MessageProps = ExtractPropTypes;