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