import * as React from "react"; import { Tabs as TabsPrimitive } from "radix-ui"; import { type VariantProps } from "../../utils.js"; declare const tabTriggerVariants: (props?: ({ size?: "sm" | "md" | "lg" | "xl" | null | undefined; visible?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type TriggerProps = Omit & VariantProps & { text: React.ReactNode; icon?: React.ReactElement; "data-testid"?: string; }; declare const Trigger: ({ className, size, icon, text, visible, ...props }: TriggerProps) => React.JSX.Element; export { Trigger, type TriggerProps };