import { IPerson } from 'person'; export declare const useEmployee: () => { addEmployee: (organizationId: string, employee: Partial>) => Promise; updateEmployee: (organizationId: string, accountId: string, employee: Partial>) => Promise; deleteEmployee: (organizationId: string, employeeId: string) => Promise; loading: boolean; };