///
import { AutoCompleteProps as AntdAutoCompleteProps } from 'antd';
export interface AutoCompleteProps extends Omit {
quickchange?: boolean;
value: string;
options: Array<{
value: any;
label: any;
}>;
onChange: (val: string) => void;
}
export declare function AutoComplete(props: AutoCompleteProps): JSX.Element;