import { ConfigService } from '../config/config.service.js'; import { RestoreDbAnswers } from './restore-db-answers.interface.js'; export declare class RestoreDbQuestions { private readonly config; private glob; constructor(config: ConfigService); parseFrom(from: string): string; shouldAskFrom(answers: RestoreDbAnswers): Promise; fromChoices(): Promise<{ name: string; value: string; }[]>; parseFromManual(from: string): string; shouldAskFromManual(answers: RestoreDbAnswers): boolean; parseTo(to: string): string; toChoices(): Promise<(import("../config/environment.interface.js").AcaEnvironment | import("../config/environment.interface.js").K8sEnvironment | import("../config/environment.interface.js").DockerEnvironment | import("../config/environment.interface.js").DockerComposeEnvironment)[]>; }