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