import { default as React } from 'react'; export type ItemProps = React.ComponentPropsWithoutRef<'div'>; export declare const ItemContext: React.Context<{ triggerRef: React.RefObject; id?: string; } | undefined>; /** Item is used to group a radio button */ export declare const Item: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>;