GoScrobble/web/node_modules/formik-material-ui/dist/RadioGroup.d.ts

11 lines
557 B
TypeScript

/// <reference types="react" />
import { RadioGroupProps as MuiRadioGroupProps } from '@material-ui/core/RadioGroup';
import { FieldProps } from 'formik';
export interface RadioGroupProps extends FieldProps, Omit<MuiRadioGroupProps, 'name' | 'value'> {
}
export declare function fieldToRadioGroup({ field: { onBlur: fieldOnBlur, ...field }, form, onBlur, ...props }: RadioGroupProps): MuiRadioGroupProps;
export declare function RadioGroup(props: RadioGroupProps): JSX.Element;
export declare namespace RadioGroup {
var displayName: string;
}