import { IPreprocessingService } from './IPreprocessingService';
import { IConversationServices } from './IConversationServices';
import { IPostprocessingService } from './IPostprocessingService';
export interface IServicesRegistrator {
    getPreProcessingServices(): Array<IPreprocessingService>;
    getConversationServices(): IConversationServices;
    getPostProcessingServices(): Array<IPostprocessingService>;
}
