export declare type MysqlDriver = {
    query: (sql: string, params?: any[]) => Promise<any>;
};
