import { IconizzaJSON } from '@iconizza/types'; type ParentIconsList = string[]; type ParentIconsTree = Record; /** * Resolve icon set icons * * Returns parent icon for each icon */ declare function getIconsTree(data: IconizzaJSON, names?: string[]): ParentIconsTree; export { ParentIconsList, ParentIconsTree, getIconsTree };