UNPKG

ontime-components

Version:
13 lines (12 loc) 368 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; declare type TMapValue = string | Function; interface IItemSelectProps extends IProps { data?: any; selected?: boolean; mapValue?: TMapValue; } declare class Item extends PureComponent<IItemSelectProps> { render(): JSX.Element; } export { Item, IItemSelectProps };