import { ReactNode } from 'react';
import { EnumCellProps, EnumOption, WithClassname } from '@jsonforms/core';
export interface WithOptionLabel {
    getOptionLabel?(option: EnumOption): string;
    renderOption?(option: EnumOption): ReactNode;
    filterOptions?(options: EnumOption[], state: any): EnumOption[];
}
export declare const AntdAutocomplete: (props: EnumCellProps & WithClassname & WithOptionLabel) => JSX.Element;
