import { List } from 'immutable';
import { BotCommand, NlpService, IntentMemoryFeatures } from '../Api';
declare class DefaultNlpService implements NlpService {
    analyse(message: string, uni: string, intentMemoryFeatures?: List<IntentMemoryFeatures>): Promise<List<BotCommand>>;
}
export default DefaultNlpService;
