import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Coap = { code?: string | undefined; messageId?: number | undefined; messageType?: string | undefined; payload?: string | undefined; token?: string | undefined; version?: number | undefined; }; /** @internal */ export declare const Coap$inboundSchema: z.ZodType; export declare function coapFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=coap.d.ts.map