import { type IPathModel, type IPathModelDto } from "../abstractions/models/index.js"; export declare class PathModel implements IPathModel { private value; constructor(value: string); join(...paths: string[]): PathModel; existsSync(): boolean; toString(): string; toDto(): IPathModelDto; static from(value: string | IPathModelDto | PathModel): PathModel; }