//#region src/ui/hitl-interrupt-payload.d.ts /** * Human-in-the-loop interrupt values from the LangGraph API may use * snake_case (Python server) while JS clients and LangChain types expect * camelCase. Normalize known HITL fields on interrupt payloads at read time. */ /** * If `value` looks like a HITL request object, expose both the new camelCase * keys and the deprecated snake_case aliases so older apps keep working while * migrating to the new shape. */ declare function normalizeHitlInterruptPayload(value: unknown): unknown; //#endregion export { normalizeHitlInterruptPayload }; //# sourceMappingURL=hitl-interrupt-payload.d.ts.map