import { SelectField, SelectFieldProps, UseOptionsProps } from "../../hooks"; export type RadioGroupProps = SelectFieldProps & UseOptionsProps; export declare const RadioGroup: ({ field, options, getValue, getLabel, initialValue, }: RadioGroupProps) => JSX.Element;