import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BenefitDownloadablesProperties = { archived: { [k: string]: boolean; }; files: Array; }; /** @internal */ export declare const BenefitDownloadablesProperties$inboundSchema: z.ZodMiniType; /** @internal */ export type BenefitDownloadablesProperties$Outbound = { archived: { [k: string]: boolean; }; files: Array; }; /** @internal */ export declare const BenefitDownloadablesProperties$outboundSchema: z.ZodMiniType; export declare function benefitDownloadablesPropertiesToJSON(benefitDownloadablesProperties: BenefitDownloadablesProperties): string; export declare function benefitDownloadablesPropertiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=benefitdownloadablesproperties.d.ts.map