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