import { Command } from '@oclif/core'; export default class Get extends Command { static description: string; static flags: { help: import("@oclif/core/lib/interfaces").BooleanFlag; }; static strict: boolean; static args: { name: string; }[]; static examples: string[]; private getController; /** * Runs the get command and parses the passed domains * @returns {Promise} - get command * @memberof Get */ run(): Promise; }