import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ErrorLocation } from "./errorlocation.js"; export type ErrorDetail = { location: ErrorLocation; /** * A JSON pointer for the particular property that caused the error. */ pointer: string; /** * A human-readdable explanation of the error. */ message: string; /** * The type of error that was raised for this property. */ type: string; }; /** @internal */ export declare const ErrorDetail$inboundSchema: z.ZodType; export declare function errorDetailFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=errordetail.d.ts.map