/** * Convert an absolute or relative filename to a unique identifier for that source file within the project. * * @param rootDir The absolute path of the project root directory. * @param filename The absolute or relative filename of the source. */ export declare function filenameToSourceId(rootDir: string, filename: string): string; /** * Convert a source id back to an absolute filename. * * @param rootDir The absolute path of the project root directory. * @param sourceId The source id. */ export declare function sourceIdToFilename(rootDir: string, sourceId: string): string;