import { ItemElement } from '../types/Elements';

/**
 * Sets focus to the item's content
 * @param item - item (<li>) to select
 * @param atStart - where to set focus: at the start or at the end
 */
export declare function focusItem(item: ItemElement, atStart?: boolean): void;
