import { type ReactNode } from 'react'; import { type TooltipOptions } from './utils'; export interface ItemContentProps { children: ReactNode; tooltipOptions?: TooltipOptions | null; } /** * Item content. Text content will be wrapped in a Spectrum Text * component with ellipsis overflow handling. If text content overflows and * tooltipOptions are provided a tooltip will be displayed when hovering over * the item content. */ export declare function ItemContent({ children: content, tooltipOptions, }: ItemContentProps): JSX.Element | null; export default ItemContent; //# sourceMappingURL=ItemContent.d.ts.map