import { ArrowCompanyType, EndCustomerType, PartnerType } from './company'; import { OrganizationUnitsType } from './organizationUnit'; import { UserType } from './user'; export declare type ContactsType = { id?: number; active?: boolean; communicationEmail?: string; companies?: EndCustomerType[]; company?: (EndCustomerType & { __typename: 'EndCustomer'; }) | (PartnerType & { __typename: 'Partner'; }) | (ArrowCompanyType & { __typename: 'ArrowCompany'; }); effectiveDate?: string; email?: string; erpId?: string; firstname?: string; lastname?: string; locked?: boolean; organizationUnits?: OrganizationUnitsType[]; phone?: string; status?: string; tseAccountStatus?: string; username?: string; type?: ContactTypeType; role?: ContactRole; user?: UserType; }; declare type ContactRole = { id?: number; name?: string; }; declare type ContactTypeType = { id?: number; name?: string; }; export {};