import { ElementProxy } from "../../..//elements/ElementProxy"; import UserInput from ".."; import { QuestionType } from "../QuestionType"; import { SelectQuestion } from "./SelectQuestion"; export declare class AutoCompleteQuestion extends SelectQuestion { type: QuestionType; suggest?: string | ((input: string, choices: any[]) => (any | Promise)[]); constructor(config: any); prepare(proxy: ElementProxy): Promise; }