import { ElementProxy } from '../ElementProxy'; import { IElement } from '../IElement'; export default class UserInput implements IElement { proxy: ElementProxy; $$: IElement; $: this; if?: any; delay?: any; async?: any; loop?: any; private _questions; private questionConfigs; init(props: any[] | any): void; prepare(): Promise; exec(): Promise<{}>; dispose(): Promise; }