import type { Collection, Document, CreateIndexesOptions, IndexSpecification } from 'mongodb'; export type Indexes = { index: IndexSpecification; options?: CreateIndexesOptions; }[]; export declare const buildDbIndexes: (collection: Collection, indexes: Indexes, { rebuild }?: { rebuild?: boolean; }) => Promise;