import * as z from "zod"; export type IngestionScheduleDto = { dataset: string; scheduledHourPst: number; }; /** @internal */ export declare const IngestionScheduleDto$inboundSchema: z.ZodType; /** @internal */ export type IngestionScheduleDto$Outbound = { dataset: string; scheduled_hour_pst: number; }; /** @internal */ export declare const IngestionScheduleDto$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 IngestionScheduleDto$ { /** @deprecated use `IngestionScheduleDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IngestionScheduleDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IngestionScheduleDto$Outbound` instead. */ type Outbound = IngestionScheduleDto$Outbound; } //# sourceMappingURL=ingestionscheduledto.d.ts.map