import type { RGBA } from './colorParse'; /** 计算两个颜色直接的对比度 * @param {RGBA} one 颜色1 * @param {RGBA} two 颜色2 * @returns {number} 对比度 */ export declare function getColorContrast(one: RGBA, two: RGBA): number;