import { type CSSProperties } from 'react'; interface TickWithTruncationForeignObjectProps { x: number; y: number; style: CSSProperties; height: number | string; width: number | string; tickClassName: string | undefined; tickInlineStyle: CSSProperties; formattedValue: string; displayValue: string | undefined; showTooltip: boolean; } export declare function TickWithTruncationForeignObject({ x, y, style, height, width, tickClassName, tickInlineStyle, formattedValue, displayValue, showTooltip, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};