import { Command } from "commander";
/**
 * Execute the pay command
 *
 * @param invoice The invoice to pay
 */
export declare function executePayCommand(invoice: string): Promise<void>;
/**
 * Register the pay command with the CLI
 *
 * @param program The commander program
 */
export declare function registerPayCommand(program: Command): void;
