import { VariantProps } from "@soybeanjs/cva"; //#region src/styles/radio-group.d.ts declare const radioGroupVariants: import("@soybeanjs/cva").SCVResult<"label" | "root" | "item" | "indicator" | "control", NoInfer<{ color: { primary: { control: "border-primary focus-visible:ring-primary/30"; indicator: "bg-primary"; }; destructive: { control: "border-destructive focus-visible:ring-destructive/30"; indicator: "bg-destructive"; }; success: { control: "border-success focus-visible:ring-success/30"; indicator: "bg-success"; }; warning: { control: "border-warning focus-visible:ring-warning/30"; indicator: "bg-warning"; }; info: { control: "border-info focus-visible:ring-info/30"; indicator: "bg-info"; }; carbon: { control: "border-carbon focus-visible:ring-carbon/30"; indicator: "bg-carbon"; }; secondary: { control: "border-secondary-foreground focus-visible:ring-secondary-foreground/20"; indicator: "bg-secondary-foreground/60"; }; accent: { control: "border-accent-foreground focus-visible:ring-accent-foreground/20"; indicator: "bg-accent-foreground/60"; }; }; size: { xs: { root: "gap-x-2 gap-y-1.5"; item: "gap-1.5"; control: "size-3"; }; sm: { root: "gap-x-2.5 gap-y-1.75"; item: "gap-1.75"; control: "size-3.5"; }; md: { root: "gap-x-3 gap-y-2"; item: "gap-2"; control: "size-4"; }; lg: { root: "gap-x-3.5 gap-y-2.5"; item: "gap-2.5"; control: "size-4.5"; }; xl: { root: "gap-x-4 gap-y-3"; item: "gap-3"; control: "size-5"; }; '2xl': { root: "gap-x-4.5 gap-y-3.5"; item: "gap-3.5"; control: "size-6"; }; }; orientation: { horizontal: { root: "items-center"; }; vertical: { root: "flex-col"; }; }; variant: { dot: { indicator: ""; }; outline: { control: ""; }; }; }>, { size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | undefined; color?: "info" | "success" | "warning" | "primary" | "destructive" | "carbon" | "secondary" | "accent" | undefined; variant?: "outline" | "dot" | undefined; orientation?: "horizontal" | "vertical" | undefined; }>; type RadioGroupProps = VariantProps; type RadioGroupVariant = NonNullable; //#endregion export { RadioGroupVariant };