export type ProviderRoutingScope = { providerKeys?: unknown; }; export type ResolvedProviderRoutingScope = { hasRoutingProviderScope: boolean; routedProviderKeys: Set; isInRoutingScope: (providerKey: string) => boolean; }; export declare function resolveProviderRoutingScope(scope: ProviderRoutingScope | null | undefined): ResolvedProviderRoutingScope;