import type { WCAG } from "./types"; /** * Calculates the contrast ratio between two colours in CSSRGB format. * @param colour1 The first colour in CSSRGB format * @param colour2 The second colour in CSSRGB format * @param standard The standard to evaluate the contrast ratio against, defaults to WCAG2.1 * @returns The contrast ratio between the two colours truncated to 3 decimal places */ export declare function getContrastRatioFromCSSRGB(colour1: string, colour2: string, standard: WCAG): number;