import { NestMysql2Options } from './interfaces'; import { Pool } from 'mysql2'; /** * Sample interface for NestMysql2Service * * Customize this as needed to describe the NestMysql2Service * */ interface INestMysql2Service { getMysql(): Pool; } export declare class NestMysql2Service implements INestMysql2Service { private _NestMysql2Options; private readonly logger; private _mysqlConnection; constructor(_NestMysql2Options: NestMysql2Options); getMysql(): Pool; } export {};