When I use the MySQL driver, sqlc generates ```ts import mysql, { RowDataPacket } from "mysql2/promise"; ``` However, there is no default import for mysql. Changing to the following works: ```ts import * as mysql from "mysql2/promise"; ```