/// <reference types="react" />
import type { IScales } from "../config";
export interface IThreeView {
    config: {
        autoRotate: boolean;
        colorType: 'mix' | 'hex' | 'hct' | 'rgb' | 'hsl' | 'hsv' | 'cts';
        hueZoom: number;
        showFloor: boolean;
        threeZoom: number;
    };
    data: {
        name: string;
        scales: IScales;
    }[];
}
declare const ThreeView: import("react").NamedExoticComponent<IThreeView>;
export default ThreeView;
