import { z } from 'zod'; /** * Zod schema for validating POST /assets response (201 Created) * Based on backend API specification */ export declare const PostAssetsResponseSchema: z.ZodObject<{ /** Asset domain (example.com) */ domain: z.ZodString; /** ISO 8601 formatted expiration date */ expires: z.ZodOptional; /** Asset key (e.g., "3-1-47de4580-ae51-4650-acbb-d10c028cb0ac") */ key: z.ZodString; /** Base64 encoded token (e.g., "aGVsbG8") */ token: z.ZodOptional; }, "strip", z.ZodTypeAny, { key: string; domain: string; token?: string | undefined; expires?: string | undefined; }, { key: string; domain: string; token?: string | undefined; expires?: string | undefined; }>; export type AssetUploadData = z.infer; //# sourceMappingURL=AssetAPI.schema.d.ts.map