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