import { VariantProps } from 'class-variance-authority'; import { Tabs as TabsPrimitive } from 'radix-ui'; import * as React from "react"; declare function Tabs({ className, orientation, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare const tabsListVariants: (props?: ({ variant?: "default" | "line" | 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 }; //# sourceMappingURL=tabs.d.ts.map