export type SymlinkGraph = Map<string, string>;
/**
 * Normalize a filesystem path to a POSIX absolute path without resolving symlinks.
 */
export declare function normalizeAbsolutePath(filePath: string): string;
/**
 * Resolve symlinks in a path using the extracted image symlink graph.
 * Used so evidence paths like /bin/node match APK file lists recorded at /usr/bin/node.
 */
export declare function canonicalizePath(filePath: string, symlinkGraph: SymlinkGraph): string;
