UNPKG

form-tool

Version:

Create quickly and robustly with form hooks

13 lines (12 loc) 338 B
import { FC } from 'react'; import { Props as PropsSelect } from 'react-select'; import { TSelect } from './types'; /** * Select components * @version 0.0.1 * ```ts * @param {TSelect} props properties Select * @return {ReactElement<TSelect>} node Select * ``` */ export declare const Select: FC<PropsSelect | TSelect>;