import { ShiftsResponse } from "../models/shift-data"; export interface ShiftNavigatorFilterParams { productionDate: Date | null; shiftId: number; assetId?: number | null; } export declare const getShiftsRangeByParameters: (period: string | null, Start?: Date | null, End?: Date | null, StartShiftId?: number | null, EndShiftId?: number | null, action?: "prev" | "next" | "last" | null) => Promise<{ ok: boolean; data: ShiftsResponse; message?: undefined; } | { ok: boolean; message: string; data?: undefined; }>;