import { INestApplication, Type } from '@nestjs/common'; export declare function bootstrap(pluginConfig?: Partial): Promise; /** * Setting the global config must be done prior to loading the Bootstrap Module. */ export declare function registerPluginConfig(pluginConfig: Partial): Promise>; /** * Returns an array of core entities and any additional entities defined in plugins. */ export declare function registerAllEntities(pluginConfig: Partial): Promise[]>; export * from './cache'; export * from './bull'; export * from './i18n'; export * from './i18next'; export * from './event'; export * from './task';