import NlgManagerBase from '@nlpjs/nlg'; declare class NlgManager extends NlgManagerBase { constructor(settings?: any, container?: any); addAnswer(locale: string, intent: string, answer: any, opts?: any): void; findAnswer(locale: string, intent: string, context: any, settings?: any): Promise<{ response: any; } | undefined>; removeAnswer(locale: string, intent: string, answer: any, opts?: any): void; isValid(condition: string | undefined, context: any): boolean; findAllAnswers(locale?: string, intent?: string, context?: any): { answer: string; opts: string; }[] | any; } export default NlgManager;