import * as React from "react"; import * as TabsPrimitive from "@radix-ui/react-tabs"; import classNames from "classnames"; import { Box } from "../Box/Box"; import { type LegacyTextProps } from "../Text/Text"; export declare function cn(...inputs: classNames.ArgumentArray): string; declare const TabsRoot: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const TabsList: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const TabsTrigger: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const TabsContent: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const TabsPadding: React.FC>>; declare const TabLabelText: React.FC>; type StaticComponents = { Root: typeof TabsRoot; List: typeof TabsList; Trigger: typeof TabsTrigger; Content: typeof TabsContent; Padding: typeof TabsPadding; LabelText: typeof TabLabelText; }; /** * A collection of components to construct tabs. * * @example * * ```tsx * * * * Account * * * Password * * * * * Account settings content * * * * * Password settings content * * * * ``` */ export declare const Tabs: StaticComponents; export {};