import type { TickRendererProps } from '@visx/axis'; interface YTickWithTruncationProps { position: 'top' | 'bottom'; renderProps: TickRendererProps; maxSpaceForTruncation: number; centerTick: boolean; isTickRotated: boolean; } export declare function XTickWithTruncation({ position, renderProps, maxSpaceForTruncation, centerTick, isTickRotated, }: YTickWithTruncationProps): import("react/jsx-runtime.js").JSX.Element; export {};