import type { ComponentPropsWithoutRef } from 'react'; declare const TABS_LIST_ORIENTATION: { readonly HORIZONTAL: "horizontal"; readonly VERTICAL: "vertical"; }; type TabsListOrientation = (typeof TABS_LIST_ORIENTATION)[keyof typeof TABS_LIST_ORIENTATION]; type TabsListProps = ComponentPropsWithoutRef<'div'> & { orientation?: TabsListOrientation; }; declare function TabsList({ children, onKeyDown, orientation, ...props }: TabsListProps): import("react/jsx-runtime").JSX.Element; export default TabsList; export type { TabsListOrientation, TabsListProps }; export { TABS_LIST_ORIENTATION };