export type NotificationTitleTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; export type NotificationType = 'information' | 'success' | 'warning' | 'danger'; export type NotificationSize = 's' | 'm' | undefined; export interface NotificationProps extends HTMLElement { title: string; titletag: NotificationTitleTag; alert: boolean; href: string; linkcontent: string; type: NotificationType; closable: boolean; size: NotificationSize; } //# sourceMappingURL=notification.types.d.ts.map