import type { Container } from '../container/Container.js'; import { RegistryGateway } from '../registry/RegistryGateway.js'; export interface ResolutionContext { registryGateway: RegistryGateway; } export declare function createResolutionContext(container: Container): ResolutionContext;