import { Connector, Table, TableData, ColumnInfo } from '../index'; import { Connection } from '../../connections'; export declare class BigQueryConnector implements Connector { type: string; private createClient; 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; } export declare class SnowflakeConnector implements Connector { type: string; private createConnection; private executeInternal; executeQuery(connection: Connection, query: string): Promise; 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; }