import type { ExtractPropTypes } from 'vue'; export declare type AlertEffect = 'light' | 'dark'; export declare const alertProps: { readonly title: import("element-plus/es/utils/props").BuildPropReturn; readonly description: import("element-plus/es/utils/props").BuildPropReturn; readonly type: import("element-plus/es/utils/props").BuildPropReturn; readonly closable: import("element-plus/es/utils/props").BuildPropReturn; readonly closeText: import("element-plus/es/utils/props").BuildPropReturn; readonly showIcon: BooleanConstructor; readonly center: BooleanConstructor; readonly effect: import("element-plus/es/utils/props").BuildPropReturn; }; export declare type AlertProps = ExtractPropTypes; export declare const alertEmits: { close: (evt: MouseEvent) => boolean; }; export declare type AlertEmits = typeof alertEmits;