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