import { MongoConnection } from '../MongoConnection'; import { MongoDocument } from '../MongoTypes'; export declare function createView(client: MongoConnection, db: string, view: string, config: any): Promise; export declare function dropView(client: MongoConnection, db: string, view: string): Promise;