import { Company } from "./Company"; export interface Manager { id: string; email: string; fullname: string; companyId: string; company?: Company; }