import { AbstractDirectoryEntry, DirectoryEntry, FileEntry, FileSystemObject, FileSystemParams } from "kura";
import { ExpoFsAccessor } from "./ExpoFsAccessor";
import { ExpoFsFileEntry } from "./ExpoFsFileEntry";
export declare class ExpoFsDirectoryEntry extends AbstractDirectoryEntry<ExpoFsAccessor> {
    constructor(params: FileSystemParams<ExpoFsAccessor>);
    toDirectoryEntry(obj: FileSystemObject): DirectoryEntry;
    protected createEntry(obj: FileSystemObject): ExpoFsFileEntry | ExpoFsDirectoryEntry;
    protected toFileEntry(obj: FileSystemObject): FileEntry;
}
//# sourceMappingURL=ExpoFsDirectoryEntry.d.ts.map