import { ObjectDirentInterface } from '@loom-io/core';
import { MemoryObject } from '../definitions.js';
export declare class ObjectDirent implements ObjectDirentInterface {
    protected _object: MemoryObject;
    protected _basePath: string;
    constructor(_object: MemoryObject, _basePath: string);
    isDirectory(): boolean;
    isFile(): boolean;
    get name(): string;
    get path(): string;
}
