export declare class Path {
    static init(root: string): Path;
    private previous?;
    private part;
    concat(nextPart: string | number): Path;
    flatten(): string[];
}
