import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FileDownload } from "./filedownload.js"; export type DownloadableRead = { id: string; benefitId: string; file: FileDownload; }; /** @internal */ export declare const DownloadableRead$inboundSchema: z.ZodMiniType; export declare function downloadableReadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=downloadableread.d.ts.map