import React from 'react'; import { OptionItem } from './types'; export interface IItemProps { actions: any; dataSource: OptionItem; indicator: React.ReactNode; numberSelector: React.ReactNode; optionItemValue?: any; quantityInfo: any; values: any; children?: React.ReactNode; } declare const Item: (props: IItemProps) => React.JSX.Element; export default Item;