/** @jsx jsx */ import { FunctionComponent } from 'react'; import { IUserFieldProps } from './Field'; export interface IRadioBoxFieldProps extends IUserFieldProps { options: { value: any; label: any; }[]; } export declare const RadioBoxField: FunctionComponent;