//#region src/test-fixtures.d.ts /** * Generates a compacted (VACUUMed) SQLite database fixture at runtime. * This ensures the fixture matches the SQLite version being tested, * avoiding version-specific byte differences in test assertions. * * The result is cached in memory for the duration of the test run. * * **Note:** This function currently requires the Bun runtime. * * @returns A Promise resolving to the compacted database as a Uint8Array. */ declare const getCompactedFixture: () => Promise; export { getCompactedFixture };