import { ReportServiceBase } from '../../../services/state-machines/report-service.abstract'; import { FertilizerDaoService } from './fertilizer.dao.service'; import { FertilizerBucketService } from './fertilizer.bucket.service'; export declare class FertilizerReportService extends ReportServiceBase { private readonly fertilizerDaoService; private readonly fertilizerBucketService; protected getBucketService(): FertilizerBucketService; protected getDaoService(): FertilizerDaoService; protected isCoupledThing(): boolean; constructor(fertilizerDaoService: FertilizerDaoService, fertilizerBucketService: FertilizerBucketService); }