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