import { WalletClient } from "../../../wallet/WalletClient.js";
/**
 * Options for wallet commands with remote support
 */
export interface WalletCommandOptions {
    wallet?: string;
    remote?: boolean;
    url?: string;
    debug?: boolean;
    [key: string]: any;
}
/**
 * Create a wallet client based on command options
 *
 * @param options Command options
 * @returns A wallet client instance
 */
export declare function createWalletClient(options: WalletCommandOptions): WalletClient;
