import type { Color } from './types';
/**
 * Returns the best contrast color between black or white to the color
 * @param color The color
 * @returns Another color:)
 */
declare const yiqColor: (color: Color) => Color;
export default yiqColor;
