import { Sqlite3Adapter } from "./Sqlite3Adapter"; import { PGAdapter } from "./PGAdapter"; import { MySQLAdapter } from "./MySQLAdapter"; export declare const adapters: { sqlite3: typeof Sqlite3Adapter; pg: typeof PGAdapter; mysql: typeof MySQLAdapter; mysql2: typeof MySQLAdapter; };