import { type ReactNode } from 'react';
import { type IEditorConfig, type IScales } from './config';
export interface IColorListScale {
    color: string;
    darkColor: string;
    dom: ReactNode;
    name: string;
    scales: IScales;
}
export interface IColorStudio {
    forceConfig?: {
        data: IEditorConfig;
        name: string;
        time: number;
    };
    logo?: string;
    logoHref?: string;
    onChange?: (v: {
        name: string;
        scales: IScales;
    }) => void;
    showFooter?: boolean;
    title?: string;
}
declare const ColorStudio: import("react").NamedExoticComponent<IColorStudio>;
export default ColorStudio;
