import { Command } from '@oclif/core';
export default class Check extends Command {
    static description: string;
    static examples: string[];
    static args: {
        name: string;
        required: boolean;
    }[];
    getInputType(input: string): string | boolean;
    getNameByIp(ip: string): Promise<string | null>;
    run(): Promise<void>;
}
