interface Selectors { [key: string]: (entity: any) => any; } interface DataPool { [entityName: string]: any[]; } export interface SeedOptions { selectors: Selectors; timestampedCollections: string[]; } declare const seedRun: (knex: any, dataPools: DataPool, { selectors, timestampedCollections }: SeedOptions) => Promise; export default seedRun;