import React from "react"; import { ShiftData } from "../shift-navigator-v2"; export declare const useShiftsAroundCurrent: ({ currentShiftId, shiftsRange, enabled, }: { currentShiftId?: number; shiftsRange?: number; enabled?: boolean; }) => import("@tanstack/react-query").UseQueryResult; export declare const useShiftsByRange: ({ shiftId, assetId, shiftsBefore, shiftsAfter, enabled, }: { shiftId?: number; assetId?: number; shiftsBefore?: number; shiftsAfter?: number; enabled?: boolean; }) => import("@tanstack/react-query").UseQueryResult; type Props = { currentShiftId: number; value: number | null; onShiftSelected: (shift: ShiftData | null) => void; disabled?: boolean; shiftsRange?: number; assetId?: number; shiftsAfter?: number; }; export declare const ShiftAutocomplete: ({ currentShiftId, value, onShiftSelected, disabled, shiftsRange, assetId, shiftsAfter, }: Props) => React.JSX.Element; export {};