import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ReportedOperation = { plugin: string; pluginVersion: string; name: string; }; /** @internal */ export declare const ReportedOperation$inboundSchema: z.ZodType; /** @internal */ export type ReportedOperation$Outbound = { plugin: string; pluginVersion: string; name: string; }; /** @internal */ export declare const ReportedOperation$outboundSchema: z.ZodType; export declare function reportedOperationToJSON(reportedOperation: ReportedOperation): string; export declare function reportedOperationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=reportedoperation.d.ts.map