import type { FC } from 'react'; import { RadioGroup as ArkUiRadioGroup } from '@ark-ui/react/radio-group'; import { type VariantProps } from 'class-variance-authority'; declare const radioGroupVariants: (props?: ({ variant?: "default" | "card" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type RadioGroupNativeProps = Omit; export type RadioGroupVariantsProps = VariantProps; export type RadioGroupProps = RadioGroupNativeProps & RadioGroupVariantsProps; export declare const RadioGroup: FC; export {};