import { default as React } from 'react';
import { InterpolationMode } from 'chroma-js';
export interface ColorSpaceComboProps {
    /** List of color supported color spaces */
    colorSpaces?: (InterpolationMode)[];
    /** The callback method that is triggered when the state changes */
    onChange?: (colorSpace: InterpolationMode) => void;
    /** The selected color space */
    colorSpace?: InterpolationMode;
}
/**
 * Symbolizer editorwindow UI.
 */
export declare const ColorSpaceCombo: React.FC<ColorSpaceComboProps>;
