export interface TeamMember{id:string;name:string;email:string;role:"Admin" | "Staff";uid:string;status:"active" | "terminated";isSystemAccount?: boolean}export interface Task{id:string;title:string;description:string;assigneeId?: string;goalId?: string;dueDate:Date;status:"Not Started" | "In Progress" | "Completed";priority:"Low" | "Medium" | "High"}export interface Goal{id:string;title:string;description:string;type:"weekly" | "monthly" | "quarterly" | "yearly";status:"active" | "completed" | "paused";createdDate?: Date;targetDate?: Date;progress?: number}export interface Notification{id:string;type:"success" | "error" | "info";message:string}
