import type { QuestionAnswer } from 'inquirer'; import { Subject } from 'rxjs'; import type { AnyFunction } from '../types/common.types'; import type { IConfig } from '../types/config.types'; import type { IAnswers } from '../types/types'; export declare function initUserPrompts($userPrompts: Subject, answers: IAnswers, onTerminate: AnyFunction): void; export declare function getUserPrompts($userPrompts: Subject, answers: IAnswers, config: IConfig, q: QuestionAnswer, onComplete: AnyFunction, onNextDomain: (nextDomain: string) => void): void;