export declare type PathLinux = string;
export declare type PathLinuxRelative = string;
export declare type PathLinuxAbsolute = string;
export declare type PathOsBased = string | PathOsBasedRelative | PathOsBasedAbsolute;
export declare type PathOsBasedRelative = string;
export declare type PathOsBasedAbsolute = string;
export declare type PathRelative = string;
export declare type PathAbsolute = string;
export declare function pathJoinLinux(...paths: any[]): PathLinux;
export declare function pathNormalizeToLinux(pathToNormalize?: PathOsBased): PathLinux;
export declare function pathRelativeLinux(from: PathOsBased, to: PathOsBased): PathLinux;
export declare function pathResolveToLinux(arr: PathOsBased[]): PathLinux;
export declare function getPathRelativeRegardlessCWD(from: PathOsBasedRelative, to: PathOsBasedRelative): PathLinuxRelative;
