/**
 * Joins url parts or paths in a unix style regardless of the platform
 * Needed to join url parts on windows for example
 */
export declare function unixJoin(parts: string[] | string, options?: {
    keepFullPath: boolean;
}): string;
