import { DeepPartial, SeederCollection } from './common'; import { SeederCollectionReadingOptions, SeederConfig } from './config'; export * from './config'; export declare class Seeder { static Transformers: { replaceDocumentIdWithUnderscoreId: (collection: SeederCollection) => SeederCollection; }; config: SeederConfig; constructor(config?: DeepPartial); readCollectionsFromPath: (path: string, partialConfig?: DeepPartial | undefined) => SeederCollection[]; import: (collections: SeederCollection[], partialConfig?: DeepPartial | undefined) => Promise; }