import { Pool } from "mysql2/promise";
export declare function createMySQLConnection(config: {
    host: string;
    port: number;
    username: string;
    password: string;
    database: string;
    schema: string;
}): Promise<Pool>;
