import { AgentZeroSolution } from "./AgentZeroSolution"; export declare class AgentZeroSolutionStore { static add(mlSolution?: AgentZeroSolution): string; static deleteObject(name?: string): void; static get(name?: string): AgentZeroSolution; static getAllNames(options?: Record): string; static getCompositeOptions( compositeSolutionName?: string, inputOptions?: Record ): string; static getSupportedOOBIntents(options?: Record): string; static update(name?: string, mlSolution?: AgentZeroSolution): void; }