import { default as React } from 'react'; import { Key, ListBoxItemProps } from 'react-aria-components'; export interface BaseItem { text: string; Icon?: React.FC>; icon?: React.ReactNode; dot?: string; itemValue?: any; } export interface IItem extends BaseItem, Omit { id: Key; } declare const Item: React.FC; export default Item;