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