/** * Path, either POSIX or Windows. */ export declare type SysPath = string; /** * POSIX path, either absolute or relative. */ export declare type PosixPath = string; /** * Relative POSIX path. */ export declare type RelPosixPath = string; /** * Absolute POSIX path. */ export declare type AbsPosixPath = string;