/** Save the current command to the history */
export declare function addArgsToHistory(): void;
/** Reads and caches the command history */
export declare function initHistory(): void;
/** Retrieve the CLI command history */
export declare function getHistory(): string[];
/** Retrieve the previous CLI command */
export declare function getPreviousCommand(): {
    command: string;
};
