import { MongoCollectionClass } from '../../common/mongo-collection.js';
import { type HashedTrip } from '@tmlmobilidade/types';
import { type IndexDescription } from 'mongodb';
import { z } from 'zod';
declare class HashedTripsClass extends MongoCollectionClass<HashedTrip, HashedTrip, HashedTrip> {
    private static _instance;
    protected createSchema: z.ZodSchema;
    protected updateSchema: z.ZodSchema;
    private constructor();
    static getInstance(): Promise<HashedTripsClass>;
    protected getCollectionIndexes(): IndexDescription[];
    protected getCollectionName(): string;
    protected getEnvName(): string;
}
export declare const hashedTrips: HashedTripsClass;
export {};
