/// <reference types="react" />
/******************************************************
 ************************* Dom *************************
 ******************************************************/
export interface IScaleRow {
    alpha?: boolean;
    colorType: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts';
    scale: string[];
    showDetail?: boolean;
    solidScale?: string[];
    title: 'light' | 'lightA' | 'dark' | 'darkA';
}
declare const ScaleRow: import("react").NamedExoticComponent<IScaleRow>;
export default ScaleRow;
