import type { TruncationMode } from '../../../../../typography/text-ellipsis/TextEllipsis.js'; import type { HoneycombLabelsDisplay } from '../../../types/honeycomb.js'; interface CanvasCircleRendererProps { x: number; y: number; radius: number; fillColor: string; value: string | number; name?: string; strokeColor?: 'transparent' | string; labelsDisplay?: HoneycombLabelsDisplay; truncationMode?: TruncationMode; } export declare const CanvasCircleRenderer: { (props: CanvasCircleRendererProps): null; displayName: string; }; export {};