import * as ts from "typescript"; /** Data structure representing the cached results of running Grats */ type Version = string; export type RunCache = Map; export declare function cacheFromProgram(program: ts.Program): RunCache; export declare function cachesAreEqual(a: RunCache, b: RunCache, ignorePaths: Set): boolean; export {};