export { MAX_CONVERSATION_RUN_EVENT_PAYLOAD_BYTES } from "./run-event-limits.js"; type ConversationRunEventRecord = Record & { type: string; }; /** Return conversation run event JSON byte length. */ export declare function getConversationRunEventJsonByteLength(value: unknown): number; /** Event emitted for normalize conversation run. */ export declare function normalizeConversationRunEvent(event: ConversationRunEventRecord): ConversationRunEventRecord[]; /** Normalizes conversation run events. */ export declare function normalizeConversationRunEvents(events: ConversationRunEventRecord[]): ConversationRunEventRecord[]; //# sourceMappingURL=run-event-normalization.d.ts.map