import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ErrorMessage = { /** * The datasource this message relates to. */ source?: string | undefined; errorMessage?: string | undefined; }; /** @internal */ export declare const ErrorMessage$inboundSchema: z.ZodType; export declare function errorMessageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=errormessage.d.ts.map