import { Command } from "commander";
/**
 * Add common options to a command
 * @param cmd The commander command
 * @returns The command with common options added
 */
export declare const addCommonOptions: (cmd: Command) => Command;
/**
 * Register all wallet commands with the CLI
 *
 * @param program The commander program
 */
export declare function registerWalletCommands(program: Command): void;
