import { Entry } from '../../types';
declare class EntryBuilder {
private _isFile;
private _isDirectory;
private _isSymbolicLink;
private readonly _entry;
path(filepath: string): this;
file(): this;
directory(): this;
symlink(): this;
stats(): this;
build(): Entry;
}
export declare function builder(): EntryBuilder;
export {};