import type { IHSV } from './interfaces'; /** Converts RGB components to an HSV color. */ export declare function rgb2hsv(r: number, g: number, b: number): IHSV;