import { Command } from "commander";
import { StreamCommandOptions } from "./index.js";
/**
 * Execute the stream send command
 *
 * @param options Command line options
 */
export declare function executeStreamSendCommand(options: StreamCommandOptions): Promise<void>;
/**
 * Register the send command
 *
 * @param streamCommand The parent stream command
 * @param addCommonOptions Function to add common options to command
 */
export declare function registerSendCommand(streamCommand: Command, addCommonOptions: (cmd: Command) => Command): void;
