/**
 * Convert Windows backslash paths to forward slash paths.
 * Preserves Windows extended-length paths (\\?\) as-is.
 */
export declare function slash(path: string): string;
