///
import type { ItemType } from '../../hooks';
import { CheckboxStatus } from '../checkbox';
import { RadioStatus } from '../radio';
import { ItemStatus } from './types';
interface Props {
mode: 'single' | 'multiple';
item: ItemType;
status: ItemStatus;
radioStatus: RadioStatus;
checkStatus: CheckboxStatus;
onExpand: (it: ItemType) => void;
onSelect: (it: ItemType) => void;
}
export declare const Item: ({ mode, item, status, radioStatus, checkStatus, onSelect, onExpand, }: Props) => JSX.Element;
export {};