import type { SourceGraphNode, SourceScope } from './types.js';
export interface SourceScopePlan {
    scope: SourceScope;
    nodes: SourceGraphNode[];
}
export declare function planSourceScopes(nodes: Iterable<SourceGraphNode>): SourceScopePlan[];
