import { Employees, RequestError, RequestStatus } from '@open-tender/types';
import { AppState } from '../app';
export interface PunchesState {
    businessDate: string | null;
    entities: Employees;
    loading: RequestStatus;
    error: RequestError;
}
export declare enum PunchesActionType {
    FetchPunches = "punches/getPunches"
}
export declare const fetchPunches: import("@reduxjs/toolkit").AsyncThunk<Employees, string, {
    state: AppState;
    rejectValue: RequestError;
    dispatch?: import("redux").Dispatch<import("redux").UnknownAction> | undefined;
    extra?: unknown;
    serializedErrorType?: unknown;
    pendingMeta?: unknown;
    fulfilledMeta?: unknown;
    rejectedMeta?: unknown;
}>;
export declare const resetPunches: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"punches/resetPunches">, setPunchesBusinessDate: import("@reduxjs/toolkit").ActionCreatorWithPayload<any, "punches/setPunchesBusinessDate">;
export declare const selectPunches: (state: AppState) => PunchesState;
export declare const selectPunchesBusinessDate: (state: AppState) => string | null;
export declare const punchesReducer: import("redux").Reducer<PunchesState>;
