import { IIntentDispatcher } from "./IIntentDispatcher"; import { IIntentRepository } from "../intent/IIntentRepository"; import { IIntentRegistry } from "../intent/IIntentRegistry"; export declare class IntentDispatcher implements IIntentDispatcher { private intentRegistry; private intentRepository; constructor(intentRegistry: IIntentRegistry, intentRepository: IIntentRepository); dispatch(intentName: string, entities: I): Promise; complete(actions: any): Promise; }