import type { ModuleRegistry } from '../runtime/registry.js'; import type { SeedContext } from '../types.js'; export interface SeedRunnerOptions { log?: (msg: string) => void; /** Only run seeds from these modules (if not set, run all) */ modules?: string[]; } /** * Run all seed factories from registered modules. * Seeds are run in module load order (dependencies first). */ export declare function runAllSeeds(registry: ModuleRegistry, context: SeedContext, options?: SeedRunnerOptions): Promise<{ module: string; seeds: string[]; }[]>; //# sourceMappingURL=seed-runner.d.ts.map