import { NestCordBaseDiscovery } from '../context'; export interface TextCommandMeta { name: string; description: string; aliases?: string[]; } /** * Represents a text command discovery. */ export declare class TextCommandDiscovery extends NestCordBaseDiscovery { getName(): string; getDescription(): string; getAliases(): string[]; isTextCommand(): this is TextCommandDiscovery; toJSON(): Record; }