/**
 * Coverts an os specific path to a unix style path
 */
export declare function normalizePath(osSpecificPath: string): string;
/**
 * Normalized path fragments and joins them
 */
export declare function joinPathFragments(...fragments: string[]): string;
