import { MongoCollectionClass } from '../../mongo-collection.js';
import { VehicleEvent } from '@tmlmobilidade/types';
import { IndexDescription } from 'mongodb';
declare class VehicleEventsClass extends MongoCollectionClass<VehicleEvent, VehicleEvent, VehicleEvent> {
    private static _instance;
    private constructor();
    static getInstance(): Promise<VehicleEventsClass>;
    protected getCollectionIndexes(): IndexDescription[];
    protected getCollectionName(): string;
    protected getEnvName(): string;
}
export declare const vehicleEvents: VehicleEventsClass;
export {};
