import * as z from "zod"; /** * Accessible link to the file, either public http or local file:// */ export type UrlSource = { type?: "URL" | undefined; url: string; }; /** @internal */ export declare const UrlSource$inboundSchema: z.ZodType; /** @internal */ export type UrlSource$Outbound = { type: "URL"; url: string; }; /** @internal */ export declare const UrlSource$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace UrlSource$ { /** @deprecated use `UrlSource$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UrlSource$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UrlSource$Outbound` instead. */ type Outbound = UrlSource$Outbound; } //# sourceMappingURL=urlsource.d.ts.map