import { ParsingConfigOptions } from '../../../types/parsing.js'; /** * Resolves import paths to absolute file paths using battle-tested libraries. * Handles relative paths, TypeScript paths, and node module resolution. * * Examples: * - './constants' -> '/full/path/to/constants.ts' * - '@/components/ui/button' -> '/full/path/to/src/components/ui/button.tsx' * - '@shared/utils' -> '/full/path/to/packages/utils/index.ts' */ export declare function resolveImportPath(currentFile: string, importPath: string, parsingOptions: ParsingConfigOptions, resolveImportPathCache: Map): string | null;