import { IItemRove } from './types/itemRove';
declare const ItemRove: ({ id, children, focus, index, setFocus, onSelectItem, asElement, role, onMouseOver, dataTestId, type, disabled, ariaSelected, ariaControls, ariaLabel, url, disableKeys, ariaDisabled, preventScrollOnFocus, ariaHidden, checkIsFirstTime, }: IItemRove) => JSX.Element;
/**
 * @description
 * ItemRove component is a component that can be used to select and navigate through a list of items with the keyboard arrows.
 * It can be used to create a list of options that can be selected.
 * @param {React.PropsWithChildren<IItemRove>} props
 * @returns {JSX.Element}
 */
export { ItemRove };
