import type { IServiceOptions } from '../interface/config.js'; import { Service } from './Service.js'; declare abstract class SingletonService extends Service { constructor(name: string, options: IServiceOptions); start(): Promise; stop(reason: string): Promise; protected onError(err: Error): void; private election_; } export { SingletonService }; //# sourceMappingURL=SingletonService.d.ts.map