import type { Dictionary, EntityManager } from '@mikro-orm/core'; export declare abstract class Seeder { abstract run(em: EntityManager, context?: T): void | Promise; protected call(em: EntityManager, seeders: { new (): Seeder; }[], context?: T): Promise; }