import { DaoBase } from '../../../services/state-machines/dao.abstract'; import { MongodbService } from '../../../services/mongodb/mongodb.service'; export declare class PlanterDaoService extends DaoBase { private readonly mongoConnection; protected getCollection(): any; protected isCoupledThing(): boolean; private planterCollection; constructor(mongoConnection: MongodbService); findPlantingTrips(planters: any, from: any, to: any): Promise; findPlantingTrip(planter: any, start: any): Promise; }