import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OperationsBundleDownload } from "./operationsbundledownload.js"; /** * Target operations-bundle set the Operator should converge its loaded plugin registry toward. */ export type TargetOperationsBundleSet = { hash: string; bundles: Array; }; /** @internal */ export declare const TargetOperationsBundleSet$inboundSchema: z.ZodType; export declare function targetOperationsBundleSetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=targetoperationsbundleset.d.ts.map