/**
 * Normalize archive entry path
 *
 * - Converts backslashes to forward slashes
 * - Removes empty segments
 * - Removes leading slashes
 *
 * Node 0.8+ compatible.
 */
export default function normalizePath(p: string): string;
