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 { render(): JSX.Element; } export { Item, IItemSelectProps };