import { z } from 'zod'; export declare const assetSchema: z.ZodObject<{ assetUrl: z.ZodString; }, "strip", z.ZodTypeAny, { assetUrl: string; }, { assetUrl: string; }>; export type Asset = z.infer; export declare const assetUploadPayloadSchema: z.ZodUnion<[z.ZodObject<{ source: z.ZodObject<{ url: z.ZodString; attachment: z.ZodOptional; }, "strip", z.ZodTypeAny, { url: string; attachment?: undefined; }, { url: string; attachment?: undefined; }>; }, "strip", z.ZodTypeAny, { source: { url: string; attachment?: undefined; }; }, { source: { url: string; attachment?: undefined; }; }>, z.ZodObject<{ source: z.ZodObject<{ attachment: z.ZodString; url: z.ZodOptional; }, "strip", z.ZodTypeAny, { attachment: string; url?: undefined; }, { attachment: string; url?: undefined; }>; }, "strip", z.ZodTypeAny, { source: { attachment: string; url?: undefined; }; }, { source: { attachment: string; url?: undefined; }; }>]>; export type AssetUploadPayload = z.infer; //# sourceMappingURL=asset-schema.d.ts.map