import Color from '../types/Color';
/**
 * Returns true if the two colors are the same
 * @author Gabe Abrams
 * @param a first color
 * @param b second color
 * @returns true if colors are the same
 */
declare const colorsAreSame: (a: Color, b: Color) => boolean;
export default colorsAreSame;
