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