import { VariantProps } from "class-variance-authority";
import { ComponentProps } from "react";
import tabsVariants from "./variants";
interface TabsProps extends ComponentProps<"div">, VariantProps<typeof tabsVariants> {
    value: string;
    contentHeight?: string;
}
declare const Tabs: {
    ({ className, children, variant, density, contentHeight, onChange, value, ref, ...props }: TabsProps): import("react/jsx-runtime").JSX.Element;
    Trigger: any;
    Content: any;
};
export default Tabs;
