import * as React from "react"; export interface RadioGroupChoiceType { value: string; label: React.ReactNode; } export interface RadioGroupFieldProps { choices: RadioGroupChoiceType[]; className?: string; disabled?: boolean; error?: boolean; hint?: string; label?: string; name?: string; noResultsText: string; value: string; onChange: (event: React.ChangeEvent) => void; } declare const RadioGroupField: React.FC; export default RadioGroupField;