export type INotificationType = "rent" | "contract" | "payment" | "transfer" | "spam" | "building" | "expenditures"; export interface INotificationsRequest { type: INotificationType; } export interface IAnnouncementUpsertRequest { title: string; description: string; type: string; startDate: string; endDate: string; }