import { Employee } from '@open-tender/types'; declare const useEmployee: (api: any) => { employee: Employee | null; error: string | null; fetch: (identifier: string | number, withPunches?: boolean) => Promise; reset: () => void; }; export default useEmployee;