export declare const LAYOUT_VERSION = 1; export declare type Modules = { packageManager: string; store: string; skipped: string[]; layoutVersion: number; independentLeaves: boolean; pendingBuilds: string[]; }; export declare function read(modulesPath: string): Promise; export declare function save(modulesPath: string, modules: Modules): Promise;