import type { Handoff, ManifestDiagnostic, OperationManifest } from "./types.js"; /** Compare one schema-valid handoff with one schema-valid operation manifest. */ export declare function validateManifest(handoff: Handoff, manifest: OperationManifest, changedPaths: readonly string[] | undefined, changedPathsProvided: boolean, options?: { readonly requirePassedValidation?: boolean; }): ManifestDiagnostic[];