import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TimeRange = { /** * start time of the time range, applicable for the CUSTOM type. */ startTime?: Date | undefined; /** * end time of the time range, applicable for the CUSTOM type. */ endTime?: Date | undefined; /** * The number of days to look back from the current time, applicable for the LAST_N_DAYS type. */ lastNDaysValue?: number | undefined; }; /** @internal */ export declare const TimeRange$inboundSchema: z.ZodType; /** @internal */ export type TimeRange$Outbound = { startTime?: string | undefined; endTime?: string | undefined; lastNDaysValue?: number | undefined; }; /** @internal */ export declare const TimeRange$outboundSchema: z.ZodType; export declare function timeRangeToJSON(timeRange: TimeRange): string; export declare function timeRangeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=timerange.d.ts.map