import { ElementProxy } from "../../..//elements/ElementProxy"; import UserInput from ".."; import { AbsQuestion } from "../AbsQuestion"; import { QuestionType } from "../QuestionType"; export declare class SelectQuestion extends AbsQuestion { type: QuestionType; choices?: { title: string; value: any; }[]; constructor(config: any); prepare(proxy: ElementProxy): Promise; }