import type { ArgObj, IOptions, RetVal } from './types.js'; /****************************************************************************** Types ******************************************************************************/ type CollapseType = { -readonly [K in keyof T]: T[K]; } & {}; /****************************************************************************** Functions ******************************************************************************/ /** * Format path object. */ declare function setupPaths(pathObj: T, options?: U): CollapseType>; /****************************************************************************** Export ******************************************************************************/ export default setupPaths;