import { Container } from 'inversify'; import type { MediatorDeclarationsType, ComponentDeclarationType, EventHandlersType } from './types'; interface BindModulePropsType { components?: ComponentDeclarationType; mediators?: MediatorDeclarationsType; eventHandlers?: EventHandlersType; parentContainer?: Container; containers?: Container[]; } export declare function getModuleContainer({ components, mediators, containers, eventHandlers, parentContainer, }: BindModulePropsType): { identifiers: Record; container: Container; }; export {};