import * as React from 'react';

import { RadioProps } from '../../addons/Radio';
import { FormFieldProps } from './FormField';

export interface FormRadioProps extends FormFieldProps, RadioProps {
  [key: string]: any;

  /** An element type to render as (string or function). */
  as?: any;

  /** A FormField control prop. */
  control?: any;

  /** HTML input type, either checkbox or radio. */
  type?: 'checkbox' | 'radio';
}

declare const FormRadio: React.StatelessComponent<FormRadioProps>;

export default FormRadio;
