import { Command } from "commander";
/**
 * Execute the invoice command
 *
 * @param amount The amount in satoshis
 */
export declare function executeInvoiceCommand(amount: number): Promise<void>;
/**
 * Register the invoice command with the CLI
 *
 * @param program The commander program
 */
export declare function registerInvoiceCommand(program: Command): void;
