import type { Channels } from '../types'; declare const HSL: { re: RegExp; hueRe: RegExp; _hue2deg: (hue: string) => number; parse: (color: string) => Channels | void; stringify: (channels: Channels) => string; }; export default HSL;