import FSEntry from './FSEntry'; export default class Directory extends FSEntry { children: Array; constructor(fullPath: string); forceOpen(): Promise; close(): void; protected load(): Promise; find(relativePath: string, openIfNotLoaded?: boolean): Promise; static fetch(fullPath: string): Directory; }