/**
* Add colors to elements that don't have colors
* @author Gabe Abrams
* @param items list of items that may or may not have a color prop
* @returns items with a color prop defined on every item
*/declareconstaddColors: (items: any[]) =>any[];
exportdefault addColors;