/** * Retrieves entities on the given path. * @param importFn dynamic import module function * @param path path to the entities directory * @param ignoreFilesList files to ignore in entities directory * @returns entities */ export declare const listEntities: (importFn: (module: string) => Promise, path: string, ignoreFilesList: string[]) => Promise;