import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { HostTimelineEventAsset } from "./hosttimelineeventasset.js"; export type HostTimeline = { events: Array | null; scannedTo: Date; }; /** @internal */ export declare const HostTimeline$inboundSchema: z.ZodType; export declare function hostTimelineFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=hosttimeline.d.ts.map