import Base from "../Base"; import Bot from "../Bot"; declare class CooldownsManager extends Base { private _cooldowns; constructor(bot: Bot); hasCooldown(commandName: string, user: string): number; setCooldown(commandName: string, user: string): void; private _now; private _updateCooldowns; private _remainingCooldown; } export default CooldownsManager;