import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PushFieldValidation = { /** * Field name that resulted in the validation issue. */ field?: string | undefined; /** * Details on the validation issue. */ details: string; /** * Unique reference identifier for the validation issue. */ ref?: string | null | undefined; }; /** @internal */ export declare const PushFieldValidation$inboundSchema: z.ZodType; export declare function pushFieldValidationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushfieldvalidation.d.ts.map