import { Command } from "commander";
/**
 * Options for the balance command
 */
interface BalanceOptions {
    remote?: boolean;
    url?: string;
    wallet?: string;
}
/**
 * Execute the balance command
 *
 * @param options Command line options
 */
export declare function executeBalanceCommand(options: BalanceOptions): Promise<void>;
/**
 * Register the balance command with the CLI
 *
 * @param program The commander program
 */
export declare function registerBalanceCommand(program: Command): void;
export {};
