const db = drizzle(pgPool, { schema });export type DrizzleClient = typeof db;// in the other fileimport { DrizzleClient } from "the-first-file";export const myFunction = async (db: DrizzleClient) => { // ...}