import type { Root } from 'mdast';
export interface FileWithTree {
    path: string;
    tree: Root;
}
export declare const buildImportMap: (files: FileWithTree[]) => {
    importedFiles: Set<string>;
    fileImportsMap: Map<string, Set<string>>;
};
