import { Event } from "nostr-tools";
export declare function validateDockerReleaseSignature(sig: Event, { id, repo, signers, version, prod, }: {
    id: string;
    repo: string;
    signers: string[];
    prod: boolean;
    version: string;
}): boolean;
