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