import BaseCommand from '../base-command'; declare class CheckCommand extends BaseCommand { static description: string; static args: { provider: import("@oclif/core/lib/interfaces/parser").Arg>; }; run(): Promise; private getNodeList; } export default CheckCommand;