import { DaoBase } from '../../../services/state-machines/dao.abstract'; import { MongodbService } from '../../../services/mongodb/mongodb.service'; export declare class LogisticVehicleDaoService extends DaoBase { private readonly mongoConnection; private logisticVehicleCollection; constructor(mongoConnection: MongodbService); protected getCollection(): any; protected isCoupledThing(): boolean; getCollectionsByDriverCodeGroupByThing(from: any, to: any, driverCode: any, thingIds: string[]): Promise; getCollectionsByThingIds(from: any, to: any, thingIds: string[]): Promise; private removeMinutesAndSecondsOnDateOverwritten; }