import { Contacts } from ".."; export interface ITask { id: string; spaceId: string; calendarId: string; title: string; description?: string; startAt?: Date; isCompleted: boolean; contactId: string; relatedContact?: Contacts.IContactInfo; }