import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const Refresh: { readonly Full: "full"; readonly Incremental: "incremental"; readonly Metric: "metric"; readonly Power: "power"; }; export type Refresh = ClosedEnum; export type EchidnaGateLoadPulseQueryDto = { refresh?: Refresh | undefined; ruleId: string; turboMode?: boolean | undefined; }; /** @internal */ export declare const Refresh$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Refresh$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Refresh$ { /** @deprecated use `Refresh$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Full: "full"; readonly Incremental: "incremental"; readonly Metric: "metric"; readonly Power: "power"; }>; /** @deprecated use `Refresh$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Full: "full"; readonly Incremental: "incremental"; readonly Metric: "metric"; readonly Power: "power"; }>; } /** @internal */ export declare const EchidnaGateLoadPulseQueryDto$inboundSchema: z.ZodType; /** @internal */ export type EchidnaGateLoadPulseQueryDto$Outbound = { refresh: string; ruleId: string; turboMode?: boolean | undefined; }; /** @internal */ export declare const EchidnaGateLoadPulseQueryDto$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 EchidnaGateLoadPulseQueryDto$ { /** @deprecated use `EchidnaGateLoadPulseQueryDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EchidnaGateLoadPulseQueryDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EchidnaGateLoadPulseQueryDto$Outbound` instead. */ type Outbound = EchidnaGateLoadPulseQueryDto$Outbound; } //# sourceMappingURL=echidnagateloadpulsequerydto.d.ts.map