import { z } from "zod"; export declare const PresignedDownloadUrlRequestSchema: z.ZodObject<{ url: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; }, { url: string; }>; export type PresignedDownloadUrlRequestData = z.infer; export declare const PresignedDownloadUrlResponseSchema: z.ZodObject<{ downloadUrl: z.ZodString; expiresAt: z.ZodNumber; }, "strip", z.ZodTypeAny, { downloadUrl: string; expiresAt: number; }, { downloadUrl: string; expiresAt: number; }>; export type PresignedDownloadUrlResponseData = z.infer;