react-trip-date
Version:
date-picker and range-picker for React applications
15 lines (14 loc) • 553 B
TypeScript
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) => JSX.Element;
export {};