import type { ComponentPropsWithoutRef, ReactNode } from "react"; import { type As, type MergeWithAs, type RadioGroupProps } from "@heroui/react"; import type { Field } from "soda-tanstack-form"; export type FormRadioGroupProps = MergeWithAs, ComponentPropsWithoutRef, RadioGroupProps, AsComponent> & { field: Field; component?: (props: MergeWithAs, ComponentPropsWithoutRef, RadioGroupProps, AsComponent>) => ReactNode; }; export declare function FormRadioGroup({ field, component: RadioGroup2, ...rest }: FormRadioGroupProps): ReactNode;