export declare class RelativePath {
    private readonly path;
    private constructor();
    get(): string;
    getDotsPath(): string;
    static of(path: string): RelativePath;
    contains(path: string): boolean;
}
