import * as z from "zod/v4"; import { ReportedOperation, ReportedOperation$Outbound } from "./reportedoperation.js"; /** * Operations bundle set the Operator currently has loaded, for plugin-sync status tracking. */ export type OperationsReport = { loadedBundleHash?: string | null | undefined; operations?: Array | undefined; }; /** @internal */ export type OperationsReport$Outbound = { loadedBundleHash?: string | null | undefined; operations?: Array | undefined; }; /** @internal */ export declare const OperationsReport$outboundSchema: z.ZodType; export declare function operationsReportToJSON(operationsReport: OperationsReport): string; //# sourceMappingURL=operationsreport.d.ts.map