import { ICreateEmployee, IEmployee, IEmployeeQuery, IUpdateEmployee } from './employee.dto'; declare const employees: { list(query?: IEmployeeQuery): Promise>; create(data: ICreateEmployee): Promise>; retrieve(id: string): Promise>; update(id: string, data: IUpdateEmployee): Promise>; delete(id: string): Promise>; }; export default employees;