import { IPerson } from 'person'; export declare class EmployeeApi { static ORGANIZATION_ENDPOINT: string; static addEmployee: (organizationId: string, params: Partial) => Promise>; static updateEmployee: (organizationId: string, accountId: string, data: Partial) => Promise>; static deleteEmployee: (organizationId: string, employeeId: string) => Promise>; }