import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EventSource } from "./eventsource.js"; export type EventName = { /** * The name of the event. */ name: string; source: EventSource; /** * Number of times the event has occurred. */ occurrences: number; /** * The first time the event occurred. */ firstSeen: Date; /** * The last time the event occurred. */ lastSeen: Date; }; /** @internal */ export declare const EventName$inboundSchema: z.ZodMiniType; export declare function eventNameFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventname.d.ts.map