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