import { default as React } from 'react'; export type ItemProps = React.ComponentPropsWithoutRef<'div'> & { value: string; children: React.ReactNode; imageUrl?: string; checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; }; export declare const ItemContext: React.Context<{ triggerRef: React.RefObject; id?: string; } | undefined>; export declare const Item: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { value: string; children: React.ReactNode; imageUrl?: string; checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; } & React.RefAttributes>;