import { Express } from "express"; import { AwilixContainer } from "awilix"; import { ConfigModule } from "../types/global"; type Options = { app: Express; container: AwilixContainer; configModule: ConfigModule; }; declare const _default: ({ app, container, configModule }: Options) => Promise; export default _default;