import { ReportServiceBase } from '../../../services/state-machines/report-service.abstract'; import { FarmOtherActivitiesDaoService } from './farm-other-activities.dao.service'; import { FarmOtherActivitiesBucketService } from './farm-other-activities.bucket.service'; export declare class FarmOtherActivitiesReportService extends ReportServiceBase { private readonly farmOtherActivitiesDaoService; private readonly farmOtherActivitiesBucketService; protected getBucketService(): FarmOtherActivitiesBucketService; protected getDaoService(): FarmOtherActivitiesDaoService; protected isCoupledThing(): boolean; constructor(farmOtherActivitiesDaoService: FarmOtherActivitiesDaoService, farmOtherActivitiesBucketService: FarmOtherActivitiesBucketService); }