import { ConfigService } from '../config/config.service.js'; import { BackupDbAnswers } from './backup-db-answers.interface.js'; export declare class BackupDbQuestions { private readonly config; constructor(config: ConfigService); parseFrom(from: string): string; shouldAskFrom(answers: BackupDbAnswers): boolean; fromChoices(): Promise; parseTo(to: string): string; defaultTo(answers: BackupDbAnswers): string; }