import * as z from "zod"; export type PulseLoadHistoryDto = { creatorName?: string | undefined; createdTime: number; finishedTime?: number | undefined; finishedState?: string | undefined; startDs: string; endDs: string; reloadType: string; turboMode: boolean; }; /** @internal */ export declare const PulseLoadHistoryDto$inboundSchema: z.ZodType; /** @internal */ export type PulseLoadHistoryDto$Outbound = { creatorName?: string | undefined; createdTime: number; finishedTime?: number | undefined; finishedState?: string | undefined; startDs: string; endDs: string; reloadType: string; turboMode: boolean; }; /** @internal */ export declare const PulseLoadHistoryDto$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 PulseLoadHistoryDto$ { /** @deprecated use `PulseLoadHistoryDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PulseLoadHistoryDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PulseLoadHistoryDto$Outbound` instead. */ type Outbound = PulseLoadHistoryDto$Outbound; } //# sourceMappingURL=pulseloadhistorydto.d.ts.map