import * as React from 'react'; interface FormChoiceProps extends Omit, 'disabled'> { inline?: boolean; disabled?: boolean; checked?: boolean; containerClassName?: string; type?: 'checkbox' | 'radio' | 'select'; value: string; selected?: boolean; } declare class FormChoice extends React.Component {} export default FormChoice;