import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type S3DownloadURL = { url: string; headers?: { [k: string]: string; } | undefined; expiresAt: Date; }; /** @internal */ export declare const S3DownloadURL$inboundSchema: z.ZodMiniType; export declare function s3DownloadURLFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=s3downloadurl.d.ts.map