import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TimedConfig } from "./timedconfig.js"; export declare const DigestTimedMetadataUnit: { readonly Seconds: "seconds"; readonly Minutes: "minutes"; readonly Hours: "hours"; readonly Days: "days"; readonly Weeks: "weeks"; readonly Months: "months"; }; export type DigestTimedMetadataUnit = ClosedEnum; export declare const DigestTimedMetadataType: { readonly Timed: "timed"; }; export type DigestTimedMetadataType = ClosedEnum; export type DigestTimedMetadata = { amount?: number | undefined; unit?: DigestTimedMetadataUnit | undefined; digestKey?: string | undefined; type: DigestTimedMetadataType; timed?: TimedConfig | undefined; }; /** @internal */ export declare const DigestTimedMetadataUnit$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DigestTimedMetadataType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DigestTimedMetadata$inboundSchema: z.ZodType; export declare function digestTimedMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=digesttimedmetadata.d.ts.map