import { IHSL, IHSLA, IHSV, IHSVA, IRGB, IRGBA } from './interfaces'; export declare function inputToRGB(color: string | IRGB | IRGBA | IHSL | IHSLA | IHSV | IHSVA | any): { ok: boolean; format: any; r: number; g: number; b: number; a: number; };