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