import type { FixtureDefinition, FixtureLoadResult } from './types.js'; /** * Loads an array of fixture definitions into the database. * * Each record is inserted if new, updated if its content hash changed, * or skipped if unchanged. Pass `options.force` to always overwrite. */ export declare function loadFixtures(db: any, definitions: FixtureDefinition[], options?: { force?: boolean; }): Promise; //# sourceMappingURL=loader.d.ts.map