import React from "react"; import { FieldError } from "react-hook-form"; import { ShiftInfo } from "../shift-navigator"; type Props = { label?: string; value: number | null; onChange?: (id: number | null) => void; fieldError?: FieldError | undefined; disabled?: boolean; }; export declare const useShifts: (shiftId: number | null) => import("@tanstack/react-query").UseQueryResult; export declare const ShiftSelector: ({ label, value, onChange, fieldError, disabled, }: Props) => React.JSX.Element; export {};