import { DependencyInjectionScope } from '@dandi/core/types'; /** * @internal * Represents the root-level injection scope. This is generally only used directly for app initialization, and * as the parent of {@link AppInjectionScope} */ export declare class RootInjectionScope extends DependencyInjectionScope { private static readonly value; constructor(); getValue(): string; } /** * @internal */ export declare class AppInjectionScope extends DependencyInjectionScope { private static readonly value; constructor(); getValue(): string; } //# sourceMappingURL=root-injection-scope.d.ts.map