import { default as React } from 'react'; export type ItemProps = React.ComponentPropsWithoutRef<'div'> & { asChild?: boolean; isSelected?: boolean; scrollBehavior?: 'smooth' | 'auto'; scrollBehaviorOnMount?: 'smooth' | 'auto'; }; export declare const Item: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { asChild?: boolean; isSelected?: boolean; scrollBehavior?: "smooth" | "auto"; scrollBehaviorOnMount?: "smooth" | "auto"; } & React.RefAttributes>;