import { Context } from "./context"; export declare function record(entry: string, dependency: string, context: Context): void; export declare function markChanged(file: string, context: Context): string[]; export declare function getEntries(dependency: string): string[]; export declare function register(context: Context): void; export declare function unregister(): void; export declare function getRelations(): [string, string][]; export interface DependencyRecorder { record(file: string): void; }