import { TabListProps } from './tab-list.types'; /** * The container that houses the tabs. * Responsible for handling focus and keyboard navigation between tabs. * * ### Usages * * ```tsx * import { Tabs, TabList, Tab, TabPanel } from '@bloomreach/react-banana-ui'; * * export default function MyCustomComponent() { * return ( * * * Tab 1 * Tab 2 * Tab 3 * * Tab 1 content * Tab 2 content * Tab 3 content * * ); * } * ``` */ declare const TabList: import('react').ForwardRefExoticComponent>; export default TabList;