import { type HSVA, type MaxNum, type RGBA } from './colorParse'; /** * 将 RGB 转换为 HSV * @param {RGBA} rgba rgba * @return {HSVA} HSVA */ export declare function rgbToHsv(rgba: RGBA): HSVA & { max: MaxNum['hsva']; };