import { Service } from "./toolbox-interfaces"; export declare class ServiceMaster implements Service { private services; constructor(services: Service[]); destructor(): void; start(): void; stop(): void; }