import { Collection } from 'discord.js'; import { TextCommandDiscovery } from './text-command.discovery'; /** * Service that manages text commands. */ export declare class TextCommandsService { private readonly logger; readonly cache: Collection; add(textCommand: TextCommandDiscovery): void; get(name: string): TextCommandDiscovery; remove(name: string): void; }