import { Type } from './Type'; import { Instance } from './Instance'; import { ControllerExecutionOptions } from './ControllerExecutionOptions'; export declare class ControllerInstance extends Instance { type: Type; namespace: string; executionOptions: ControllerExecutionOptions; command?: string; /** * CLI Instance argument to commands */ instances?: Array; /** * CLI Instance argument to commands */ instance?: Instance; /** * CLI Instance argument to commands */ instanceConfigFile?: string; }