import type { ChatSpacingKind } from './chat-spacing.js'; import { WidthAwareContainer } from './width-aware-container.js'; export interface NotificationOptions { message: string; source?: string; kind?: string; priority?: string; status?: string; } export declare class NotificationComponent extends WidthAwareContainer { private readonly options; constructor(options: NotificationOptions); protected rebuildForWidth(width: number): void; getChatSpacingKind(): ChatSpacingKind; } //# sourceMappingURL=notification.d.ts.map