import { Command, Interfaces } from '@oclif/core';
export default class CarapaceGen extends Command {
    static description: string;
    static flags: {
        'refresh-cache': Interfaces.BooleanFlag<boolean>;
    };
    run(): Promise<void>;
    private getCommandNodes;
    private getTopics;
    private sanitizeSummary;
}
