import { NotificationType } from './NotificationType'; export declare type NotificationSetting = 'EMAIL' | 'PHONE' | 'ALL' | 'NONE'; export declare const notificationSettings: string[]; export declare type NotificationSettings = Partial<{ [type in NotificationType]: NotificationSetting; }>;