export declare class AddMemoryCommand {
    static addMemory(memory: string): any;
}
export declare class StartAgent {
    static startAgent(name: string, task: string, prompt: string): Promise<string>;
}
export declare class MessageAgent {
    static messageAgent(key: string, prompt: string): Promise<string>;
}
export declare class ListAgents {
    static listAgents(): Promise<string>;
}
export declare class DeleteAgent {
    static deleteAgent(key: string): Promise<string>;
}
