import * as z from "zod"; export type Gates = { id: string; pastDay: number; past7Days: number; }; export type Experiments = { id: string; pastDay: number; past7Days: number; }; export type ExposureCountDto = { /** * ids of gates to query (max 25) */ gates: Array; /** * ids of experiments to query (max 25) */ experiments: Array; }; /** @internal */ export declare const Gates$inboundSchema: z.ZodType; /** @internal */ export type Gates$Outbound = { id: string; pastDay: number; past7Days: number; }; /** @internal */ export declare const Gates$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 Gates$ { /** @deprecated use `Gates$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Gates$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Gates$Outbound` instead. */ type Outbound = Gates$Outbound; } /** @internal */ export declare const Experiments$inboundSchema: z.ZodType; /** @internal */ export type Experiments$Outbound = { id: string; pastDay: number; past7Days: number; }; /** @internal */ export declare const Experiments$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 Experiments$ { /** @deprecated use `Experiments$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Experiments$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Experiments$Outbound` instead. */ type Outbound = Experiments$Outbound; } /** @internal */ export declare const ExposureCountDto$inboundSchema: z.ZodType; /** @internal */ export type ExposureCountDto$Outbound = { gates: Array; experiments: Array; }; /** @internal */ export declare const ExposureCountDto$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 ExposureCountDto$ { /** @deprecated use `ExposureCountDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExposureCountDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExposureCountDto$Outbound` instead. */ type Outbound = ExposureCountDto$Outbound; } //# sourceMappingURL=exposurecountdto.d.ts.map