import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { DebugTracker } from "./debug-tracker.js"; import { EventProcessingStatusType } from "./event-processing-status-type.js"; import { Event } from "./event.js"; import { FeatureUsageInfo } from "./feature-usage-info.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type GetEventByIDResponse = { debugTracker?: DebugTracker | undefined; event?: Event | undefined; processedEvents?: Array | undefined; status?: EventProcessingStatusType | undefined; }; /** @internal */ export declare const GetEventByIDResponse$inboundSchema: z.ZodMiniType; export declare function getEventByIDResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=get-event-by-id-response.d.ts.map