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