/** path shall always be sorted before using in express * to avoid a generic route like /* to catch a specific one like /bonjour * * @param {Object[]} urlObjOrArr * @param {String} indexInArray * @return {Array} urls modified */ export declare function sortUrlsByDeepnessInArrayOrObject(urlObjOrArr: (string | ObjectGeneric | any[])[], indexInArray: number): (string | any[] | ObjectGeneric)[];