export declare class MongoCooldownManager {
    private collectionName;
    private collection;
    constructor(collectionName?: string);
    connect(): Promise<void>;
    private key;
    getRemaining(userId: string, command: string): Promise<number>;
    set(userId: string, command: string, seconds: number): Promise<void>;
    checkAndSet(userId: string, command: string, seconds: number): Promise<number>;
    clear(userId: string, command: string): Promise<void>;
}
//# sourceMappingURL=MongoCooldownManager.d.ts.map