import { Client, Collection } from 'discord.js';
import { C as CommandProps } from './command.d-BxTLPTAy.js';

declare class RoBoClient extends Client {
    commands: Collection<string, CommandProps>;
    cooldowns: Collection<string, number>;
    constructor(intents: number[]);
}

export { RoBoClient as R };
