import { type StagedPackageVerificationResult } from "./staged-package-verification-core.js"; import { type CommandRunner } from "./staged-package-verification-runtime.js"; export type StagedPackageVerificationOptions = { readonly commandRunner?: CommandRunner; readonly planPath: string; readonly preflightPath: string; readonly registryFactsPath: string; readonly tarballPath: string; }; export declare function runStagedPackageVerification(options: StagedPackageVerificationOptions): StagedPackageVerificationResult;