import { SourceFile } from "typescript"; /** * @description * It returns the ast of the file that corresponds to the provided path. * It memoizes that the given path corresponds to the returned ast, so that * the next time that the ast of the same path is required it does not need * to create it again. */ export declare function getSourceFileOf(absolutePathToFile: string): SourceFile;