import { AxiosError } from 'axios'; import { IPerson } from 'person'; import { AppThunk } from 'store'; export declare const addEmployeeRequest: (organizationId: string, employee: Partial, onError: (err?: AxiosError) => void) => AppThunk; export declare const updateEmployeeRequest: (organizationId: string, accountId: string, employee: Partial, onError: (err?: AxiosError) => void) => AppThunk; export declare const deleteEmployeeRequest: (organizationId: string, employeeId: string, onError: (err?: AxiosError | { message: string; statusCode: string; }) => void) => AppThunk;