import * as z from "zod"; export type Events = { event: string; count: number; lastUpdatedTime: Date; }; export type MultipleEventCountDto = { date: string; events: Array; }; /** @internal */ export declare const Events$inboundSchema: z.ZodType; /** @internal */ export type Events$Outbound = { event: string; count: number; last_updated_time: string; }; /** @internal */ export declare const Events$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 Events$ { /** @deprecated use `Events$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Events$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Events$Outbound` instead. */ type Outbound = Events$Outbound; } /** @internal */ export declare const MultipleEventCountDto$inboundSchema: z.ZodType; /** @internal */ export type MultipleEventCountDto$Outbound = { date: string; events: Array; }; /** @internal */ export declare const MultipleEventCountDto$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 MultipleEventCountDto$ { /** @deprecated use `MultipleEventCountDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MultipleEventCountDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MultipleEventCountDto$Outbound` instead. */ type Outbound = MultipleEventCountDto$Outbound; } //# sourceMappingURL=multipleeventcountdto.d.ts.map