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