import { DirectoryReaderAsync } from "./DirectoryReaderAsync"; import { EntryAsync } from "./EntryAsync"; import { FileEntryAsync } from "./FileEntryAsync"; import { DirectoryEntry, Entry, Flags } from "./filesystem"; import { FileSystemAsync } from "./FileSystemAsync"; export declare class DirectoryEntryAsync extends EntryAsync { constructor(fileSystemAsync: FileSystemAsync, directoryEntry: DirectoryEntry); createReader(): DirectoryReaderAsync; getDirectory(path: string, options?: Flags): Promise; getFile(path: string, options?: Flags): Promise; list(): Promise[]>; removeRecursively(): Promise; } //# sourceMappingURL=DirectoryEntryAsync.d.ts.map