import type { ExtractPropTypes } from 'vue'; export declare const alertEffects: readonly ["light", "dark"]; export declare const alertProps: { readonly showAfter: import("element-plus/es/utils").EpPropFinalized; readonly hideAfter: import("element-plus/es/utils").EpPropFinalized; readonly autoClose: import("element-plus/es/utils").EpPropFinalized; 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 type AlertProps = ExtractPropTypes; export declare const alertEmits: { open: () => boolean; close: (evt?: Event) => boolean; }; export type AlertEmits = typeof alertEmits;