/** * Calculate the contrast. see https://webaim.org/resources/contrastchecker/ * @param foreground * @param background */ export declare function contrast(foreground: any, background: any): number; /** * Reverse color for max contrast. */ export declare function mostContrast(color: any, palette: string[]): string;