/**
 * 颜色类型
 */
export declare const colorType: {
    hex: "hex";
    rgb: "rgb";
    hsb: "hsb";
    options(): ({
        value: "hex";
    } | {
        value: "rgb";
    } | {
        value: "hsb";
    })[];
};
/**
 * hsb 的 key 值
 */
export declare enum hsbKey {
    h = "hue",
    s = "saturation",
    b = "brightness"
}
