/** * Removes the initial slash from a path, if the first character is a slash. * @param {string} path - The path to remove the initial slash from. * @returns {string} The path without an initial slash. */ export declare function removeInitialSlashFromPath(path: string): string;