/**
 * 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
 */
declare const addColors: (items: any[]) => any[];
export default addColors;
