import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ErrorResponse } from "./error-response.js"; import { FailurePointType } from "./failure-point-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type FailurePoint = { error?: ErrorResponse | undefined; failurePointType?: FailurePointType | undefined; }; /** @internal */ export declare const FailurePoint$inboundSchema: z.ZodMiniType; export declare function failurePointFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=failure-point.d.ts.map