import AssistantV1 from 'ibm-watson/assistant/v1';
import { ISession } from './ISession';
export interface IPreprocessingService {
    processRequest(request: AssistantV1.MessageRequest, session: ISession): Promise<void>;
}
