/**
 * Concatenates multiple path segments into a single path string.
 *
 * @param args - The path segments to concatenate.
 * @returns The concatenated path string.
 */
export declare const concatPaths: (...args: string[]) => string;
