import { NodePath } from '@babel/traverse'; /** * Builds a map of imported function names to their import paths from a given program path. * Handles both named imports and default imports. * * Example: import { getInfo } from './constants' -> Map { 'getInfo' => './constants' } * Example: import utils from './utils' -> Map { 'utils' => './utils' } */ export declare function buildImportMap(programPath: NodePath): Map;