import { MySQLAdapter } from "../base.js"; import type { TableNames } from "../base.js"; import type { Pool, Connection } from "mysql2/promise"; export declare class Mysql2Adapter extends MySQLAdapter { constructor(connection: Pool | Connection, tableNames: TableNames); }