import { ISQLDatabase } from '../Interfaces/DB';
import { SQLConnectionConfigType } from '../Types/DB';
export declare class MySQLConnection implements ISQLDatabase {
private pool;
constructor(config: SQLConnectionConfigType);
query<K>(query: string, values?: any[]): Promise<K[]>;
}