/** * Event dispatcher: maps HarnessEvent types to extracted handler functions. */ import type { HarnessEvent } from '@mastra/core/harness'; import type { EventHandlerContext } from './handlers/types.js'; import type { TUIState } from './state.js'; export declare function dispatchEvent(event: HarnessEvent, ectx: EventHandlerContext, state: TUIState): Promise; //# sourceMappingURL=event-dispatch.d.ts.map