import { FileSystem, FileSystemReadSync } from './api'; import { DirectoryContent } from './model'; export declare function checkExistsSync(expectedType: 'file' | 'dir', fs: FileSystemReadSync, targetPath: string): boolean; export declare function checkExists(expectedType: 'file' | 'dir', fs: FileSystem, targetPath: string): Promise; export declare function addContentAsync(content: DirectoryContent, fs: FileSystem, currentPath?: string): Promise; //# sourceMappingURL=user-utils.d.ts.map