import { Employee, Punch } from '@open-tender/types'; import { ModalState } from '../slices'; declare const usePunch: (api: any) => { submit: (employee: Employee, blockPin: boolean) => void; send: (data: Punch, employee: Employee) => Promise; print: (employeeId: number) => Promise; error: string | null; msg: string | null; modal: ModalState | null; reset: () => void; }; export default usePunch;