import { ReactNode } from 'react'; import { EnumCellProps, EnumOption, WithClassname } from '@json-forms/core'; import { AutocompleteRenderOptionState } from '@material-ui/lab/Autocomplete'; import { FilterOptionsState } from '@material-ui/lab/useAutocomplete'; export interface WithOptionLabel { getOptionLabel?(option: EnumOption): string; renderOption?(option: EnumOption, state: AutocompleteRenderOptionState): ReactNode; filterOptions?(options: EnumOption[], state: FilterOptionsState): EnumOption[]; } export declare const MuiAutocomplete: (props: EnumCellProps & WithClassname & WithOptionLabel) => JSX.Element;