import { CompileResult } from '../types.js'; export interface FileChanges { changedFiles: Set; changedLines: Map; } /** * Tracks which output files have changed between compilations. * Returns the set of changed file paths and a map of changed line numbers per file. */ export declare function useFileChanges(program: CompileResult["program"], outputFiles: string[]): FileChanges; //# sourceMappingURL=use-file-changes.d.ts.map