export type RetailAlertCategory = 'Loss Prevention' | 'Operations' | 'System Health' | 'Merchandising'; export declare class RetailAlertType { id: number; name: string; description: string; category: RetailAlertCategory; icon?: string | null; stage?: string | null; createdAt: Date; }