shineout
Version:
A components library for React
6 lines (5 loc) • 301 B
TypeScript
/// <reference types="react" />
import { SelectPropsA, SelectPropsB } from './select.type';
declare function Select<DataItem, Value>(props: SelectPropsA<DataItem, Value>): JSX.Element;
declare function Select<DataItem, Value>(props: SelectPropsB<DataItem, Value>): JSX.Element;
export default Select;