import * as z from "zod/v4-mini"; export type EventTypeUpdate = { /** * The label for the event type. */ label: string; /** * Property path to extract dynamic label from event metadata (e.g., 'subject' or 'metadata.subject'). */ labelPropertySelector?: string | null | undefined; }; /** @internal */ export type EventTypeUpdate$Outbound = { label: string; label_property_selector?: string | null | undefined; }; /** @internal */ export declare const EventTypeUpdate$outboundSchema: z.ZodMiniType; export declare function eventTypeUpdateToJSON(eventTypeUpdate: EventTypeUpdate): string; //# sourceMappingURL=eventtypeupdate.d.ts.map