import * as z from "zod"; export type MultipleEventDeltaDtoEvents = { source: string; event: string; internalCount: number; externalCount: number; hasDiff: boolean; threshold: number; lastUpdatedTime: Date; }; export type MultipleEventDeltaDto = { date: string; events: Array; }; /** @internal */ export declare const MultipleEventDeltaDtoEvents$inboundSchema: z.ZodType; /** @internal */ export type MultipleEventDeltaDtoEvents$Outbound = { source: string; event: string; internal_count: number; external_count: number; has_diff: boolean; threshold: number; last_updated_time: string; }; /** @internal */ export declare const MultipleEventDeltaDtoEvents$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 MultipleEventDeltaDtoEvents$ { /** @deprecated use `MultipleEventDeltaDtoEvents$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MultipleEventDeltaDtoEvents$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MultipleEventDeltaDtoEvents$Outbound` instead. */ type Outbound = MultipleEventDeltaDtoEvents$Outbound; } /** @internal */ export declare const MultipleEventDeltaDto$inboundSchema: z.ZodType; /** @internal */ export type MultipleEventDeltaDto$Outbound = { date: string; events: Array; }; /** @internal */ export declare const MultipleEventDeltaDto$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 MultipleEventDeltaDto$ { /** @deprecated use `MultipleEventDeltaDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MultipleEventDeltaDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MultipleEventDeltaDto$Outbound` instead. */ type Outbound = MultipleEventDeltaDto$Outbound; } //# sourceMappingURL=multipleeventdeltadto.d.ts.map