import type { EDependencyLifecycle, EProviderType } from '../../enum/index';
export interface IResolutionExplanation {
    dependencies: Array<string>;
    hasRootSingletonCache: boolean;
    hasScopeCache: boolean;
    isAsyncFactory?: boolean;
    isFound: boolean;
    lifecycle?: EDependencyLifecycle;
    lookupPath: Array<string>;
    providerType?: EProviderType;
    scopeId: string;
    token: string;
}
//# sourceMappingURL=resolution-explanation.interface.d.ts.map