export declare const GradientColors: { /** * 获取梯度颜色 * @param colors 基准颜色 ['rgba(251, 55, 103, 1)','rgb(221, 132, 60)', '#fb3767'] (仅支持这三种颜色格式) * @param step 梯度长度 * @returns ['rgb(0,0,0)','rgb(255,255,255)'] */ getGradientColors(colors: string[], step: number): any; /** * rgba/rgb转16进制 * @param color * @returns {string} */ rgbTo16(color: string): string; gradientColor(colors: string[], step: number): string[]; toRgb(colors: string[]): any[]; colorRgb(sColor: string): string | number[]; colorHex(rgb: string): string; };