import { ShapeComponent as SC } from '../../runtime';
export type ColorOptions = {
    colorAttribute: 'fill' | 'stroke';
    symbol: string;
    mode?: 'fixed' | 'auto' | 'normal';
    [key: string]: any;
};
/**
 * Render point in different coordinate.
 */
export declare const Color: SC<ColorOptions>;
