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