UNPKG

@rnwonder/react-date-picker

Version:

A lightweight, customizable, and accessible date picker component for React applications.

18 lines (16 loc) 722 B
import { SelectorProps } from '../Selector'; import { default as React, SetStateAction } from 'react'; export declare const defaultSelectorProps: { option: number; setOption: () => void; optionsArray: never[]; }; export interface SelectorTwoProps extends Partial<SelectorProps> { setSelectorTwoProps?: React.Dispatch<SetStateAction<SelectorProps>>; setShowSelectorTwo?: React.Dispatch<SetStateAction<boolean>>; setAllowedComponents?: React.Dispatch<SetStateAction<HTMLElement[]>>; close?: () => void; monthSelectorTopLabel?: string; } declare const SelectorTwo: ({ setAllowedComponents, ...props }: SelectorTwoProps) => import("react/jsx-runtime").JSX.Element; export default SelectorTwo;