import { ReportServiceBase } from '../../../services/state-machines/report-service.abstract'; import { HarrowCombinedDaoService } from './harrow-combined.dao.service'; import { HarrowCombinedBucketService } from './harrow-combined.bucket.service'; export declare class HarrowCombinedReportService extends ReportServiceBase { private readonly harrowCombinedDaoService; private readonly harrowCombinedBucketService; protected getBucketService(): HarrowCombinedBucketService; protected getDaoService(): HarrowCombinedDaoService; protected isCoupledThing(): boolean; constructor(harrowCombinedDaoService: HarrowCombinedDaoService, harrowCombinedBucketService: HarrowCombinedBucketService); }