import type { TickRendererProps } from '../../../core/components/axes/types.js'; interface YTickWithTruncationProps { position: 'left' | 'right'; renderProps: TickRendererProps; maxSpaceForTruncation: number; centerTick: boolean; tickNameHasEmoji: boolean; } export declare function YTickWithTruncation({ position, renderProps, maxSpaceForTruncation, centerTick, tickNameHasEmoji, }: Readonly): import("react/jsx-runtime").JSX.Element; export {};