import type { ReactNode } from "react"; import type { ReactDatePickerCustomHeaderProps } from "react-datepicker"; import type { THeaderStateActions, IDatePicker, TDatePickerCustomHeaderProps, TValidDateSingleStamp } from "../config/types/index.d.mts"; type TDatePickerFastNavProps = { stateActions: THeaderStateActions; isPrevMonthDisabled: ReactDatePickerCustomHeaderProps["prevMonthButtonDisabled"]; isNextMonthDisabled: ReactDatePickerCustomHeaderProps["nextMonthButtonDisabled"]; onCtrlChange: IDatePicker["onCtrlChange"]; minDate: TValidDateSingleStamp; maxDate: TValidDateSingleStamp; date: Date; } & Pick; /** * Блок выстрой навигации * @returns {ReactNode} */ export declare const DatePickerFastNav: ({ stateActions, date, onCtrlChange, isPrevMonthDisabled, isNextMonthDisabled, maxDate, minDate, name, dateInputValue, pickerRef, }: TDatePickerFastNavProps) => ReactNode; export {};