import { Client } from "discord.js";
import { CommandHandler } from "../classes/CommandHandler";
export type CommandHandlerCreationOptions<T> = {
    client: T;
    debug?: true;
};
export declare const createCommands: <T = Client<boolean>>({ client, debug, }: CommandHandlerCreationOptions<T>) => CommandHandler;
