import { default as React } from 'react'; import { Key } from 'react-aria-components'; export interface IItem { label: string; itemValue: number | string; id: Key; children?: IItem[]; } declare const Item: React.FC; export default Item;