/** * Resolves a Python import module path to a file path on disk. * * Handles: * - Relative imports: `.helpers` → sibling `helpers.py` * - Parent relative imports: `..utils` → parent dir `utils.py` * - Absolute imports: `utils` → `utils.py` in same/parent dirs * - Dotted paths: `myapp.utils` → `myapp/utils.py` */ export declare function resolveImportPath(moduleName: string, currentFilePath: string): string | null; export declare function clearResolveCache(): void;