declare module 'stonyx/config' { import type { OrmConfig } from './orm-types.js'; const config: OrmConfig; export default config; } declare module 'stonyx/log' { const log: Record void) | undefined>; export default log; } declare module 'stonyx' { export function waitForModule(name: string): Promise; } declare module 'stonyx/test-helpers' { export function setupIntegrationTests(hooks: { before(fn: () => void | Promise): void; after(fn: () => void | Promise): void; }): void; }