import { ReportServiceBase } from '../../../services/state-machines/report-service.abstract'; import { OtherImplementsDaoService } from './other-implements.dao.service'; import { OtherImplementsBucketService } from './other-implements.bucket.service'; export declare class OtherImplementsReportService extends ReportServiceBase { private readonly otherImplementsDaoService; private readonly otherImplementsBucketService; protected getBucketService(): OtherImplementsBucketService; protected getDaoService(): OtherImplementsDaoService; protected isCoupledThing(): boolean; constructor(otherImplementsDaoService: OtherImplementsDaoService, otherImplementsBucketService: OtherImplementsBucketService); }