import { Repository } from 'typeorm'; import { TenantAwareCrudService } from './../core/crud'; import { OrganizationContact } from './organization-contact.entity'; export declare class OrganizationContactService extends TenantAwareCrudService { private readonly organizationContactRepository; constructor(organizationContactRepository: Repository); findByEmployee(id: string, data: any): Promise; findAllOrganizationContacts(data: any): Promise>; getOrganizationContactByEmployee(data: any): Promise<{ items: OrganizationContact[]; total: number; }>; }