import { MongoQuery } from "./MongoQuery"; import { MongoCollection } from "../MongoCollection"; export declare class MongoQueryMulti extends MongoQuery { then(onfulfilled?: ((value: T[]) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): Promise; catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): Promise; exec(): Promise; forEach(callback: any, done?: any): void; }