import { NLUSolution } from "./NLUSolution"; export declare class NLUSolutionStore { static add(mlSolution?: NLUSolution): string; static deleteObject(name?: string): void; static get(name?: string, options?: Record): NLUSolution; static getAllNames(options?: Record): string; static update( name?: string, mlSolution?: NLUSolution, options?: Record ): void; }