import type { RGB1, RGBA1 } from '../../types/rgb';
import type { HSV, HSVA } from '../../types/hsv';
export default function rgb1ToHsv(rgb: RGB1 | RGBA1): HSV | HSVA | null;
