import { default as React } from 'react'; /** * Props for the {@link Item} component. * * @category Item */ export interface ItemProps extends Omit, 'onChange'> { /** Secondary supporting text. */ description?: string; /** Disables interactions and focus. */ disabled?: boolean; /** Leading slot content. */ leading?: React.ReactNode; /** Primary label text. */ label?: string; /** Trailing slot content. */ trailing?: React.ReactNode; /** Value identifier used for selection. */ value?: string; } /** * **Item** — dumb renderer for list, listbox and menu contexts. * * Reads ARIA role and density from {@link SelectionContext}. Registers * itself with the focus controller provided by the parent `List`. * * @remarks * Export aliases: `ListItem`, `Option`. * * @example * ```tsx * * * * * ``` * * @function * @category Item */ export declare const Item: React.ForwardRefExoticComponent>; /** @category Item */ export declare const Option: React.ForwardRefExoticComponent>;