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