import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types"; /** * Full table rebuild using a temp-table swap (preserving rows when possible). */ export default function recreateTable({ table, config, }: { table: BUN_MARIADB_TableSchemaType; config?: BunMariaDBConfig; }): Promise;