import { Tabs as TabsPrimitive } from '@base-ui/react/tabs'; import { type VariantProps } from 'class-variance-authority'; import React from 'react'; declare function Tabs({ className, orientation, ...props }: TabsPrimitive.Root.Props): React.JSX.Element; declare const tabsListVariants: (props?: ({ variant?: "line" | "default" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function TabsList({ className, variant, ...props }: TabsPrimitive.List.Props & VariantProps): React.JSX.Element; declare function TabsTrigger({ className, ...props }: TabsPrimitive.Tab.Props): React.JSX.Element; declare function TabsContent({ className, ...props }: TabsPrimitive.Panel.Props): React.JSX.Element; export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants };