import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { OperatorCapabilityState } from "./operatorcapabilitystate.js"; export type OperatorCapabilityReport = { key: string; state: OperatorCapabilityState; detail?: string | null | undefined; }; /** @internal */ export declare const OperatorCapabilityReport$inboundSchema: z.ZodType; /** @internal */ export type OperatorCapabilityReport$Outbound = { key: string; state: string; detail?: string | null | undefined; }; /** @internal */ export declare const OperatorCapabilityReport$outboundSchema: z.ZodType; export declare function operatorCapabilityReportToJSON(operatorCapabilityReport: OperatorCapabilityReport): string; export declare function operatorCapabilityReportFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=operatorcapabilityreport.d.ts.map