/** Builds the asset dependency graph from resolved dependencies + JSX renders. */ import type { Asset, DependencyGraph } from '../core/types'; import { makeId } from '../extractors/ast-utils'; export declare function buildGraph(assets: Asset[]): DependencyGraph; /** "Most used" ranking helper used by the CLI summary. */ export declare function rankByUsage(assets: Asset[], limit?: number): Asset[]; export { makeId };