import { ShiftInfo } from "../../shift-navigator"; import { ShiftData } from "../../shift-navigator-v2"; export declare const getShifts: (params: { shiftId: number | null; }, signal?: AbortSignal) => Promise; export declare const getShiftsByRange: ({ shiftId, assetId, shiftsBefore, shiftsAfter, }: { shiftId?: number; assetId?: number; shiftsBefore?: number; shiftsAfter?: number; }) => Promise; export declare const getShiftsAroundCurrent: ({ currentShiftId, shiftsRange, }: { currentShiftId?: number; shiftsRange?: number; }) => Promise;