declare function list(path: string): Promise; declare function listRecursively(p: string, options?: { excludeDirectories?: boolean; }): Promise; declare function writeFileSyncIfChanged(path: string, content: string): void; export { list, listRecursively, writeFileSyncIfChanged };