import * as React from "react"; import { type VariantProps } from "class-variance-authority"; import { Tabs as TabsPrimitive } from "radix-ui"; declare function Tabs({ className, orientation, ...props }: React.ComponentProps): import("react/jsx-runtime").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 }: React.ComponentProps & VariantProps): import("react/jsx-runtime").JSX.Element; declare function TabsTrigger({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function TabsContent({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Tabs, TabsList, TabsTrigger, TabsContent, tabsListVariants };