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 EventTypeWithStats = { /** * The ID of the event type. Null for system event types. */ id?: string | null | undefined; /** * Creation timestamp of the event type. Null for system event types. */ createdAt?: Date | null | undefined; /** * Last modification timestamp of the event type. Null for system event types. */ modifiedAt?: Date | null | undefined; /** * The name of the event type. */ name: string; /** * The label for the event type. */ label: string; /** * Property path to extract dynamic label from event metadata. */ labelPropertySelector?: string | null | undefined; /** * The ID of the organization owning the event type. */ organizationId: 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 EventTypeWithStats$inboundSchema: z.ZodMiniType; export declare function eventTypeWithStatsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventtypewithstats.d.ts.map