import { Command } from "commander";
interface WalletCommandOptions {
    remote?: boolean;
    url?: string;
}
/**
 * Execute the list wallets command
 *
 * @param options Command options
 */
export declare function executeListWalletsCommand(options?: WalletCommandOptions): Promise<void>;
/**
 * Register the list wallets command with the CLI
 *
 * @param program The commander program
 */
export declare function registerListCommand(program: Command): void;
export {};
