/** * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. * * @format */ /** * Convert a path to use Unix-style slashes */ export declare function unixPath(filepath: string): string; /** * Normalize a path and convert to use platform-specific slashes */ export declare function normalizePath(filepath: string): string;