import { Command } from "commander";
/**
 * Options for the history command
 */
interface HistoryOptions {
    remote?: boolean;
    url?: string;
    wallet?: string;
}
/**
 * Execute the history command
 *
 * @param options Command line options
 * @param dbPath Path to the database file
 */
export declare function executeHistoryCommand(options: HistoryOptions): Promise<void>;
/**
 * Register the history command with the CLI
 *
 * @param program The commander program
 */
export declare function registerHistoryCommand(program: Command): void;
export {};
