/**
 * Sign Build command implementation
 */
import { Command } from "commander";
/**
 * Run the sign_build command
 * @param options Command options
 * @returns Result of the sign build operation
 */
export declare function runSignBuild({ dir, prod, repo, }: {
    dir: string;
    prod: boolean;
    repo: string;
}): Promise<void>;
/**
 * Register the sign_build command with the CLI
 * @param program Commander program instance
 */
export declare function registerSignBuildCommand(program: Command): void;
