import { Service } from "../core/service"; export interface ServiceProviderCreateOptions { name: string; services: Service[]; } export declare class ServiceProvider { constructor(options: ServiceProviderCreateOptions); getWorker(): Promise; getExectuor(): Promise; readonly name: string; readonly services: Service[]; private _name: string; private _services: Service[]; }