@rnwonder/react-date-picker
Version:
A lightweight, customizable, and accessible date picker component for React applications.
8 lines (6 loc) • 405 B
TypeScript
import { YearSelectorProps } from './YearSelector';
export interface YearSelectorExportProps extends Omit<YearSelectorProps, "type" | "setShowSelectorTwo" | "setSelectorTwoProps" | "showSelectorTwo" | "yearSelectorCount"> {
yearSelectorCount?: number;
}
declare const YearSelectorExport: (props: YearSelectorExportProps) => import("react/jsx-runtime").JSX.Element;
export default YearSelectorExport;