import { Evogram } from '../../Client'; export declare class CommandStorage { private client; private userId; private command; constructor(client: Evogram, userId: number, command: string); get(key: string): Promise; set(key: string, value: any): Promise; clearAll(): Promise; }