import { LitElement } from 'lit'; /** * Inline alert or flash notice. * * @slot - Alert content. * @slot icon - Optional leading icon. * @slot actions - Optional trailing actions. * @csspart chrome - Alert frame. * @csspart icon - Icon slot wrapper. * @csspart content - Content wrapper. * @csspart title - Title text. * @csspart actions - Actions slot wrapper. */ export declare class W1cAlert extends LitElement { title: string; variant: 'status' | 'info' | 'success' | 'warning' | 'danger'; render(): import("lit").TemplateResult<1>; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-alert': W1cAlert; } }