import Commander from './commander'; import Hooks from './hooks'; import { IOptions, ICliOptions } from '../types'; declare class Service extends Hooks { config: IOptions; cliOpts: Partial; commander: Commander; constructor(); freezeCliOptsWith(cliOpts: Partial): void; run(): void; } export default Service;