import * as readline from "node:readline"; export declare class HistoryManager { private historyFile; private maxHistorySize; constructor(historyFile?: string); loadHistory(rl: readline.Interface): Promise; saveCommand(command: string): Promise; getHistoryFile(): string; }