import type { TruncationMode } from '@dynatrace/strato-components/typography'; 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 {};