import yargs from 'yargs';
export declare const command = "help";
export declare const describe = "get help for a SIMBA truffle plugin topic";
export declare const builder: {
    topic: {
        string: boolean;
        type: string;
        describe: string;
    };
};
/**
 * get help on a given topic
 * @param args
 * args:
 * args.topic
 */
export declare const handler: (args: yargs.Arguments) => Promise<any>;
/**
 * retrieve help on a topic
 * @param topic - choose from prompts if not specified
 * @returns
 */
export declare function help(topic?: string | unknown): Promise<void>;
//# sourceMappingURL=help.d.ts.map