mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
557 B
TypeScript
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;
|
|
}
|