type NamePath = string | number; type NamePaths = NamePath[]; declare const getNamePaths: (name: NamePath | NamePaths, parentListName?: (NamePath | NamePaths)[]) => NamePaths; export default getNamePaths;