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