/** * Returns whether or not a color has bad contrast against * a white background according to a given standard */ declare function hasBadContrast(color: string, standard?: 'decorative' | 'readable' | 'aa' | 'aaa'): boolean; export default hasBadContrast;