import type { TruncationMode } from '@dynatrace/strato-components/typography'; import type { Point } from '../../../../core/types/point.js'; import { HoneycombTileData } from '../../../types/honeycomb.js'; interface TileAbstractDisplayProps { data: HoneycombTileData; } export interface TileConcreteDisplayProps { center: Point; fillColor: string; width: number; radius: number; value: string | number; name?: string; strokeColor?: string; truncationMode?: TruncationMode; showLabels?: boolean; } export declare const TileAbstractDisplay: { ({ data }: TileAbstractDisplayProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export {};