import type { XyIconName } from "../icon"; import type { XyAlertSlots, XyAlertType } from "./types"; type __VLS_Props = { type?: XyAlertType; title?: string; description?: string; showIcon?: boolean; icon?: boolean | XyIconName; closable?: boolean; banner?: boolean; variant?: import("./types").XyAlertVariant; strongTitle?: boolean; open?: boolean; classNames?: import("./types").XyAlertClassNames; styles?: import("./types").XyAlertStyles; }; type __VLS_Slots = XyAlertSlots; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { close: (event: MouseEvent) => any; afterClose: () => any; "update:open": (open: boolean) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onClose?: ((event: MouseEvent) => any) | undefined; onAfterClose?: (() => any) | undefined; "onUpdate:open"?: ((open: boolean) => any) | undefined; }>, { title: string; type: XyAlertType; open: boolean; icon: boolean | XyIconName; description: string; showIcon: boolean; closable: boolean; banner: boolean; variant: import("./types").XyAlertVariant; strongTitle: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };