import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BatchErrorData = { code: string; message: string; param?: string | null | undefined; line?: number | null | undefined; }; /** @internal */ export declare const BatchErrorData$inboundSchema: z.ZodType; /** @internal */ export type BatchErrorData$Outbound = { code: string; message: string; param?: string | null | undefined; line?: number | null | undefined; }; /** @internal */ export declare const BatchErrorData$outboundSchema: z.ZodType; export declare function batchErrorDataToJSON(batchErrorData: BatchErrorData): string; export declare function batchErrorDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=batcherrordata.d.ts.map