import type path from "node:path";
/**
 * Joins all given path segments together using the platform-specific separator as a delimiter.
 * The resulting path is normalized to remove any redundant or unnecessary segments.
 *
 * @param segments - The path segments to join.
 * @returns The joined and normalized path string.
 */
export declare const joinPaths: typeof path.join;
