/// <reference types="react" />
/// <reference types="react" />
import { FieldElement, FieldElementProps } from '../field';
import { RadioGroupProps } from '../radio';
export type RadioFieldProps = Omit<FieldElementProps, 'onChange'> & RadioGroupProps;
export default class RadioField extends FieldElement<RadioFieldProps> {
    static displayName: string;
    renderPreview(value: any): JSX.Element;
    renderControl(): JSX.Element;
}
