/* eslint-disable */ import type { ConditionalValue } from '../types/index'; import type { DistributiveOmit, Pretty } from '../types/system-types'; interface RadioGroupVariant { /** * @default "md" */ size: "sm" | "md" | "lg" } type RadioGroupVariantMap = { [key in keyof RadioGroupVariant]: Array } export type RadioGroupVariantProps = { [key in keyof RadioGroupVariant]?: ConditionalValue | undefined } export interface RadioGroupRecipe { __type: RadioGroupVariantProps (props?: RadioGroupVariantProps): Pretty> raw: (props?: RadioGroupVariantProps) => RadioGroupVariantProps variantMap: RadioGroupVariantMap variantKeys: Array splitVariantProps(props: Props): [RadioGroupVariantProps, Pretty>] getVariantProps: (props?: RadioGroupVariantProps) => RadioGroupVariantProps } export declare const radioGroup: RadioGroupRecipe