import { Command } from '@oclif/core';
import { IResponse } from "../../lib/api.js";
export default class Get extends Command {
    static args: {
        command: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
        ip: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
    };
    static description: string;
    static enableJsonFlag: boolean;
    static examples: string[];
    run(): Promise<IResponse>;
}
