import { Employee, PunchType, PunchesProcessed, Shift, Shifts, Timezone } from '@open-tender/types'; export declare const punchTypes: { PUNCH_IN: string; BREAK_IN: string; BREAK_OUT: string; PUNCH_OUT: string; }; export declare const makePunchMessage: (employee: Employee, punch_type: PunchType) => string; export declare const calcBreakSeconds: (breaks: PunchesProcessed) => number; export declare const makeShifts: (employee: Employee, tz: Timezone) => Shifts | null; export declare const processShift: (shift: Shift) => string[];