import { DependencyRelationship, DependencyGraph, GraphOptions } from './types';
/**
 * Extract dependencies from a single file's AST
 */
export declare function extractFileDependencies(filePath: string, content: string): DependencyRelationship[];
/**
 * Analyze dependencies for an array of files
 */
export declare function analyzeDependencies(files: string[], options?: GraphOptions): DependencyGraph;
/**
 * Resolve relative paths to absolute paths within project
 */
export declare function resolveModulePath(fromFile: string, toModule: string): string;
