import * as React from "react"; import { Tabs as TabsPrimitive } from "radix-ui"; import { type VariantProps } from "../../utils.js"; declare const tabContentVariants: (props?: ({ spacing?: "sm" | "md" | "lg" | "xl" | "xs" | "xxl" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ContentProps = Omit & VariantProps & { content: React.ReactNode; }; declare const Content: ({ className, content, spacing, ...props }: ContentProps) => React.JSX.Element; export { Content, type ContentProps };