/** * @internal */ export declare const getTabRoleOnly: (container: Element) => readonly HTMLElement[]; /** * @internal */ export declare const getTabPanelRoleOnly: (container: Element) => readonly HTMLElement[]; /** @internal */ interface ScrollOptions { container: HTMLElement | null; forward: HTMLElement | null; backward: HTMLElement | null; vertical: boolean; activeIndex: number; } /** * @internal */ export declare const scrollTabIntoView: (options: ScrollOptions) => void; export {};