import type { RGB255, RGBA255 } from '../types/rgb'; import type { HSV, HSVA } from '../types/hsv'; import type { HSL, HSLA } from '../types/hsl'; declare function mixRgb(color1: T, color2: T, weightPercent?: number): T; declare function mixHex(color1: string, color2: string, weight: number): string | null; declare function mixHsv(color1: T, color2: T, weight: number): T | null; declare function mixHsl(color1: T, color2: T, weight: number): T | null; export { mixRgb, mixHex, mixHsl, mixHsv, };