declare module "utils" {
    export function getColor(values: any[]): string;
    type ColorValue = string | number;
    export function hctToHex(h: ColorValue, c: ColorValue, t: ColorValue): string;
    export function hexToRgb(hex: string): number[];
}
declare module "index" {
    function colorHcl(css: any): void;
    export function colorHclPlugin(): typeof colorHcl;
}
