import { SelectProps } from "@material-ui/core/Select"; import React from "react"; export interface SingleSelectChoiceType { value: string; label: React.ReactNode; } export interface SingleSelectFieldProps { choices: SingleSelectChoiceType[]; className?: string; disabled?: boolean; error?: boolean; hint?: string; label?: string; name?: string; noResultsText: string; selectProps?: SelectProps; placeholder?: string; value?: string; onChange(event: any): any; } export declare const SingleSelectField: React.FC; export default SingleSelectField;