/**
 * Notification types for toast or alert displays
 */
export type NotificationType = 'success' | 'error' | 'info' | 'warning';
/**
 * Notification payload
 */
export interface Notification {
    type: NotificationType;
    message: string;
    /** duration in milliseconds */
    duration?: number;
}
