import { LitElement } from 'lit'; export type AlertVariant = 'warning' | 'info' | 'success' | 'error' | 'danger' | 'primary' | 'default' | 'monochrome'; export interface AlertDismissEventDetail { variant: AlertVariant; } export type AlertDismissEvent = CustomEvent; export interface AlertProps { variant?: AlertVariant; bordered?: boolean; rounded?: boolean; borderedLeft?: boolean; dismissible?: boolean; onAlertDismiss?: (event: AlertDismissEvent) => void; } export declare class AgAlert extends LitElement implements AlertProps { variant: AlertVariant; bordered: boolean; rounded: boolean; borderedLeft: boolean; dismissible: boolean; onAlertDismiss?: (event: AlertDismissEvent) => void; constructor(); static styles: import('lit').CSSResult; private _handleDismiss; render(): import('lit').TemplateResult<1>; } //# sourceMappingURL=_Alert.d.ts.map