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