export type ArrayElement = ArrayType extends readonly (infer ElementType)[] ? ElementType : never; export type RecursiveArrayOfIds = Array>; export type RecursiveArrayOfIdsItem = { id: TValue; path?: string; children?: RecursiveArrayOfIds; };