import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BenefitGrantError = { message: string; type: string; timestamp: string; }; /** @internal */ export declare const BenefitGrantError$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitGrantError$Outbound = { message: string; type: string; timestamp: string; }; /** @internal */ export declare const BenefitGrantError$outboundSchema: z.ZodMiniType; export declare function benefitGrantErrorToJSON(benefitGrantError: BenefitGrantError): string; export declare function benefitGrantErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitgranterror.d.ts.map