import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LpdMessage = { body?: string | undefined; status?: number | undefined; }; /** @internal */ export declare const LpdMessage$inboundSchema: z.ZodType; export declare function lpdMessageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=lpdmessage.d.ts.map