export type NotificationPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end'; export type NotificationCloseReason = 'close-button' | 'outside-click' | 'trigger-click' | 'programmatic' | 'escape'; export type NotificationCloseDetail = { reason?: NotificationCloseReason; }; export type NotificationItemClickDetail = { itemId?: string; };