import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TimePoint = { /** * Epoch seconds. Has precedence over daysFromNow. */ epochSeconds?: number | undefined; /** * Number of days in the past, relative to the current date. */ daysFromNow?: number | undefined; }; /** @internal */ export declare const TimePoint$inboundSchema: z.ZodType; /** @internal */ export type TimePoint$Outbound = { epochSeconds?: number | undefined; daysFromNow?: number | undefined; }; /** @internal */ export declare const TimePoint$outboundSchema: z.ZodType; export declare function timePointToJSON(timePoint: TimePoint): string; export declare function timePointFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=timepoint.d.ts.map