import type { ExtractPropTypes } from "vue"; export declare type AlertEffect = "light" | "dark"; export declare const alertProps: { title: import("@bvite/vfui/es/utils/props").BuildPropReturn string) | undefined>; description: import("@bvite/vfui/es/utils/props").BuildPropReturn string) | undefined>; type: import("@bvite/vfui/es/utils/props").BuildPropReturn string) | undefined>; closeable: import("@bvite/vfui/es/utils/props").BuildPropReturn false) | (() => true) | undefined>; closeText: import("@bvite/vfui/es/utils/props").BuildPropReturn string) | undefined>; effect: import("@bvite/vfui/es/utils/props").BuildPropReturn string) | undefined>; }; export declare type AlertProps = ExtractPropTypes; export declare const alertEmites: { close: (evt: MouseEvent) => boolean; }; export declare type AlertEmites = typeof alertEmites; export declare class Alert { }