import { LitElement, PropertyValues } from 'lit'; import { SheriffEvent, SDS_COLOR_PALETTES } from '../types'; import '../sds-icon/sds-icon'; import '../sds-button/sds-button'; type NotificationVariant = Extract | 'critical'; export interface SDSNotificationProps { variant?: NotificationVariant; 'removable-label'?: string; } declare const SDSNotification_base: import("../mixins/types").Constructable & typeof LitElement; export declare class SDSNotification extends SDSNotification_base { static styles: import("lit").CSSResult[]; variant: NotificationVariant; removableLabel?: string; constructor(); updated(changed: PropertyValues): void; private readonly _remove; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'sds-notification': SDSNotification; } interface GlobalEventHandlersEventMap { 'sds-remove': SheriffEvent; } } export {}; //# sourceMappingURL=sds-notification.d.ts.map