import { Connector, Table, TableData } from '../index'; import { Connection } from '../../connections'; export declare class MongoDBConnector implements Connector { type: string; private getUrl; test(connection: Connection): Promise; getTables(connection: Connection): Promise; getData(connection: Connection, tableName: string, page: number, limit: number): Promise; getSchema(connection: Connection, tableName: string): Promise; getSnippet(connection: Connection, lang: string): string; executeQuery(connection: Connection, query: string): Promise; }