import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledHtmlAttributes, InteractionProps } from "../../shared"; export interface InnerItemProps extends InternalProps, InteractionProps, StyledHtmlAttributes { /** * React children. */ children?: ReactNode; /** * A unique key to identify the item. */ key?: string; } export declare function InnerItem(props: InnerItemProps): JSX.Element; export declare const Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare type ItemProps = ComponentProps;