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