import { ComponentProps, ForwardedRef, ReactNode } from "react"; export interface InnerItemProps { /** * A unique key to identify the item. */ key?: string; /** * Whether or not the item is disabled. */ disabled?: boolean; /** * React children. */ children: ReactNode; /** * @ignore */ forwardedRef: ForwardedRef; } export declare function InnerItem(props: InnerItemProps): JSX.Element; export declare const Item: import("../../shared").OrbitComponent; export declare type ItemProps = ComponentProps;