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

11 lines
541 B
TypeScript

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