import * as z from "zod"; export type ReportDto = { /** * URL to the report */ url: string; }; /** @internal */ export declare const ReportDto$inboundSchema: z.ZodType; /** @internal */ export type ReportDto$Outbound = { url: string; }; /** @internal */ export declare const ReportDto$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 ReportDto$ { /** @deprecated use `ReportDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReportDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReportDto$Outbound` instead. */ type Outbound = ReportDto$Outbound; } //# sourceMappingURL=reportdto.d.ts.map