UNPKG

react-trip-date

Version:

Accessible, fully customizable date and range picker for React applications.

15 lines 606 B
import { Dayjs } from "dayjs"; import { Dispatch, SetStateAction } from "react"; import { InitialComponents } from "../constant"; type Props = { displayMonths: boolean; jalali: boolean; numberOfMonths: number; source: Dayjs; components?: InitialComponents; setDisplayMonths: Dispatch<SetStateAction<boolean>>; setSource: Dispatch<SetStateAction<Dayjs>>; }; export declare const Header: ({ jalali, source, setSource, components, displayMonths, numberOfMonths, setDisplayMonths, }: Props) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Header.d.ts.map