/**
 * Publish Release command implementation
 */
import { Command } from "commander";
/**
 * Run the publish_release command
 * @param options Command options
 * @returns Result of the publish release operation
 */
export declare function runPublishRelease({ uri, dir, prod, }: {
    uri: string;
    dir: string;
    prod: boolean;
}): Promise<void>;
/**
 * Register the publish_release command with the CLI
 * @param program Commander program instance
 */
export declare function registerPublishReleaseCommand(program: Command): void;
