import { ContainerModuleInterface, ContainerModuleCallBack, AsyncContainerModuleInterface, AsyncContainerModuleCallBack } from '../interfaces/interfaces'; export declare class ContainerModule implements ContainerModuleInterface { id: number; registry: ContainerModuleCallBack; constructor(registry: ContainerModuleCallBack); } export declare class AsyncContainerModule implements AsyncContainerModuleInterface { id: number; registry: AsyncContainerModuleCallBack; constructor(registry: AsyncContainerModuleCallBack); }