import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ErrorDetail = { /** * Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id' */ location?: string | undefined; /** * Error message text */ message?: string | undefined; /** * The value at the given location */ value?: any | undefined; }; /** @internal */ export declare const ErrorDetail$inboundSchema: z.ZodType; export declare function errorDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=errordetail.d.ts.map