import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TimeInterval = { /** * The RFC3339 timestamp formatted start time of this event. */ start: string; /** * The RFC3339 timestamp formatted end time of this event. */ end: string; }; /** @internal */ export declare const TimeInterval$inboundSchema: z.ZodType; /** @internal */ export type TimeInterval$Outbound = { start: string; end: string; }; /** @internal */ export declare const TimeInterval$outboundSchema: z.ZodType; export declare function timeIntervalToJSON(timeInterval: TimeInterval): string; export declare function timeIntervalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=timeinterval.d.ts.map