import * as React from 'react'; import { BaseUIComponentProps } from "../../internals/types.js"; import type { TabsRootState } from "../root/TabsRoot.js"; /** * Groups the individual tab buttons. * Renders a `
` element. * * Documentation: [Base UI Tabs](https://base-ui.com/react/components/tabs) */ export declare const TabsList: React.ForwardRefExoticComponent & React.RefAttributes>; export interface TabsListState extends TabsRootState {} export interface TabsListProps extends BaseUIComponentProps<'div', TabsListState> { /** * Whether to automatically change the active tab on arrow key focus. * Otherwise, tabs will be activated using Enter or Space key press. * @default false */ activateOnFocus?: boolean | undefined; /** * Whether to loop keyboard focus back to the first item * when the end of the list is reached while using the arrow keys. * @default true */ loopFocus?: boolean | undefined; } export declare namespace TabsList { type State = TabsListState; type Props = TabsListProps; }