import { LitElement } from "lit"; import type { StoryMeta } from "../../story-meta.js"; import "../icon/icon.js"; export declare const ALERT_VARIANTS: readonly ["info", "success", "warning", "danger"]; export type AlertVariant = (typeof ALERT_VARIANTS)[number]; export declare class EdsAlert extends LitElement { static readonly storyMeta: StoryMeta; static styles: import("lit").CSSResult; /** * The severity variant of the alert. */ variant: AlertVariant; /** * Optional bold title for the alert. */ alertTitle: string; /** * Whether the alert can be dismissed by the user. */ dismissible: boolean; /** * Accessible label for the dismiss button. */ dismissLabel: string; private handleDismiss; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "eds-alert": EdsAlert; } } //# sourceMappingURL=alert.d.ts.map