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