import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TimeUnitEnum } from "./timeunitenum.js"; /** * Look back window configuration */ export type LookBackWindow = {}; export type DigestRegularOutput = { /** * Amount of time units */ amount: number; /** * Time unit */ unit: TimeUnitEnum; /** * Optional digest key */ digestKey?: string | undefined; /** * Look back window configuration */ lookBackWindow?: LookBackWindow | undefined; }; /** @internal */ export declare const LookBackWindow$inboundSchema: z.ZodType; export declare function lookBackWindowFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const DigestRegularOutput$inboundSchema: z.ZodType; export declare function digestRegularOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=digestregularoutput.d.ts.map