import { RadioGroupProps } from "src/components/RadioGroup"; export interface FormikRadioGroupProps extends Omit { /** Formik field name. */ name: string; /** Callback fired when the value changes. Also supports onChange for compatibility. */ onChange?: (value: string) => void; } declare const FormikRadioGroup: { ({ name, onValueChange: onValueChangeProp, onChange: onChangeProp, ...props }: FormikRadioGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string; Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; }; export { FormikRadioGroup };