import { NestWhatsBaseDiscovery } from "../context";
export interface CommandMeta {
    name: string;
    description: string;
}
export declare class CommandDiscovery extends NestWhatsBaseDiscovery<CommandMeta> {
    getName(): string;
    getDescription(): string;
    isCommand(): this is CommandDiscovery;
    toJSON(): Record<string, any>;
}
