import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EventClassificationName } from "./eventclassificationname.js"; import { EventStrategyName } from "./eventstrategyname.js"; /** * A generated classification of a given event. */ export type EventClassification = { /** * The name for a generated classification of an event. */ name?: EventClassificationName | undefined; strategies?: Array | undefined; }; /** @internal */ export declare const EventClassification$inboundSchema: z.ZodType; export declare function eventClassificationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventclassification.d.ts.map