import { FormControlProps } from '@material-ui/core/FormControl'; import { FormHelperTextProps } from '@material-ui/core/FormHelperText'; import { FC } from 'react'; import type { FieldRenderProps } from 'react-final-form'; export interface ISelectStandardProps { label: string; helperText?: string; formControlProps?: FormControlProps; formHelperTextProps?: FormHelperTextProps; } export declare type SelectHTMLElement = HTMLDivElement; interface ISelectBaseProps extends ISelectStandardProps, FieldRenderProps { } export declare const SelectFieldBase: FC; export {};