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