import { SqlSlowMonitor } from '../monitor'; type Mysql2ConnectionOrPool = any; /** * Wraps a `mysql2` Connection or Pool to intercept query timing. * Works with both promise and callback APIs. * * @param conn A `mysql2` Connection or Pool instance * @param monitor The SqlSlowMonitor to forward events to */ export declare function attachMysql2Adapter(conn: Mysql2ConnectionOrPool, monitor: SqlSlowMonitor): void; export {}; //# sourceMappingURL=mysql2Adapter.d.ts.map