UNPKG

shineout

Version:
6 lines (5 loc) 328 B
/// <reference types="react" /> import { SelectPropsA, SelectPropsB } from './select.type'; declare function SelectComponent<DataItem, Value>(props: SelectPropsA<DataItem, Value>): JSX.Element; declare function SelectComponent<DataItem, Value>(props: SelectPropsB<DataItem, Value>): JSX.Element; export default SelectComponent;