/** * Converts a path to a namespaced path. This function returns the path as is on posix. * * @example Usage * ```ts * import { toNamespacedPath } from "@frostyeti/path/posix/to-namespaced-path"; * import { equal } from "@frostyeti/assert"; * * equal(toNamespacedPath("/home/foo"), "/home/foo"); * ``` * * @param path The path. * @returns The namespaced path. */ export declare function toNamespacedPath(path: string): string;