import * as z from "zod"; export type Data = {}; export type IngestionDto = { id: string; type: string; enabled: boolean; data: Data; }; /** @internal */ export declare const Data$inboundSchema: z.ZodType; /** @internal */ export type Data$Outbound = {}; /** @internal */ export declare const Data$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 Data$ { /** @deprecated use `Data$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Data$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Data$Outbound` instead. */ type Outbound = Data$Outbound; } /** @internal */ export declare const IngestionDto$inboundSchema: z.ZodType; /** @internal */ export type IngestionDto$Outbound = { id: string; type: string; enabled: boolean; data: Data$Outbound; }; /** @internal */ export declare const IngestionDto$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 IngestionDto$ { /** @deprecated use `IngestionDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IngestionDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IngestionDto$Outbound` instead. */ type Outbound = IngestionDto$Outbound; } //# sourceMappingURL=ingestiondto.d.ts.map