export interface FocusableItem {
    id: string;
    hasFocus: boolean;
    focusElement: HTMLElement;
}
export declare type NavigationFocusState = true | false;
