mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
584 B
TypeScript
11 lines
584 B
TypeScript
/// <reference types="react" />
|
|
import { InputBaseProps as MuiInputBaseProps } from '@material-ui/core/InputBase';
|
|
import { FieldProps } from 'formik';
|
|
export interface InputBaseProps extends FieldProps, Omit<MuiInputBaseProps, 'name' | 'value' | 'error'> {
|
|
}
|
|
export declare function fieldToInputBase({ disabled, field: { onBlur: fieldOnBlur, ...field }, form: { isSubmitting }, onBlur, ...props }: InputBaseProps): MuiInputBaseProps;
|
|
export declare function InputBase(props: InputBaseProps): JSX.Element;
|
|
export declare namespace InputBase {
|
|
var displayName: string;
|
|
}
|