export declare function resolveFromIMU(imu: ImportMeta['url'], ...pathSegments: string[]): string; export declare function fileRead(...pathSegments: string[]): string; export declare function fileWrite(path: string, data: string): void; /** Synchronizes the files from the source to the target directory. Optionally remove stale files. */ export declare function syncDirs(srcDir: string, destDir: string, removeStale: boolean, verbose: boolean): void; export declare function joinIfExists(...pathSegments: string[]): string | null;