import { Database } from "bun:sqlite"; type Params = { db: Database; }; export default function listTables({ db }: Params): Promise; export {};