//#region src/slash.d.ts
/**
 * Replace backslash to slash
 *
 * @param path - The string to replace
 * @returns The string with replaced backslashes
 */
declare function slash(path: string): string;
/**
 * Replace backslash to slash and remove unneeded leading and trailing slashes
 *
 * @param path - The string to replace
 * @returns The string with replaced backslashes
 */
declare function formatSlash(path: string): string;
//#endregion
export { formatSlash, slash };
//# sourceMappingURL=slash.d.mts.map