import { Type } from '@nestjs/common'; import { AppCommandData } from '../definitions/interfaces/app-command-data'; export declare class DiscordCommandProvider { private readonly commands; addCommand(type: Type, command: AppCommandData): void; getAllCommands(): Map; }