import { ComponentPropsWithoutRef } from 'react'; /** * Props for the TabList component * @extends ComponentPropsWithoutRef<"div"> */ export type TabListProps = ComponentPropsWithoutRef<"div">; /** * TabList component for containing and managing tab buttons. * * Features: * - Horizontal scrolling for overflow tabs * - Navigation arrows for overflow content * - RTL language support * - Automatic overflow detection * - Proper ARIA roles for accessibility * - Smooth scrolling behavior * - Visual indicator positioning * * @example * * First Tab * Second Tab * Third Tab * */ export declare const TabList: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>;