export declare type OutputMockFile = { path: string; rootName: string; }; export default class CompilerOutRootFiles { files: OutputMockFile[]; /** Returns true if list of rootNames is changed */ update(rootNames: readonly string[] | undefined, inDir: string, outDir: string): boolean; }