import React from "react"; import { SearchShiftsParameters } from "../models/SearchShiftsParameters"; interface PeriodOption { value: string; label: string; } type Props = { value: SearchShiftsParameters | null; actualPeriod?: string | null; onChange: (value: any, period: string | null) => void; showShiftAndCrews?: boolean; dateFormat?: string; periodOptions?: PeriodOption[]; }; export declare const ShiftPeriodNavigatorControl: ({ value, actualPeriod, onChange, showShiftAndCrews, dateFormat, periodOptions, }: Props) => React.JSX.Element; export {};