/// <reference types="react" />
import type { IScales } from "../ColorStudio/config";
/******************************************************
 ************************* Dom *************************
 ******************************************************/
export interface IScaleBlock {
    colorType?: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts';
    highLights?: number[];
    isFliterStep?: boolean;
    midHighLight?: number;
    scale: IScales;
    showDetail?: boolean;
}
declare const ScaleBlock: import("react").NamedExoticComponent<IScaleBlock>;
export default ScaleBlock;
