export interface IUserNotificationsConfig { id: string; spaceId: string; userId: string; conversations: UserConfig_Conversations; chat: UserConfig_Chat; calendar: UserConfig_Calendar; tickets: UserConfig_Tickets; } export declare class UserConfig_Conversations { newConversation: UserConfig_SendTo; transferIn: UserConfig_SendTo; newMessage: UserConfig_SendTo; responseTimeOut: UserConfig_SendTo; reminders: UserConfig_SendTo; } export declare class UserConfig_Chat { reminders: UserConfig_SendTo; } export declare class UserConfig_Calendar { eventReminder: UserConfig_SendTo; } export declare class UserConfig_Tickets { newTicketAssigned: UserConfig_SendTo; transferIn: UserConfig_SendTo; newContactMessage: UserConfig_SendTo; firstResponseTimeOut: UserConfig_SendTo; resolutionTimeOut: UserConfig_SendTo; } export declare class UserConfig_SendTo { email: boolean; push: boolean; }