import { TickLabelProps } from '../../../types/text-props.js'; import { TickPrimitiveValue } from '../../../types/tick-value.js'; import { Orientation, TickLabelLayout } from '../types.js'; export declare const ELLIPSIS_BUFFER = 2; export declare const getTickLabelPropsForCategoryAxis: (orientation: Orientation, tickLabelLayout?: TickLabelLayout) => TickLabelProps; export declare const bottomTickLabelDateProps: TickLabelProps; export declare const bottomPanTickLabelDateProps: TickLabelProps; export declare const getTickLabelPropsForValueAxis: (orientation: Orientation, tickLabelLayout?: TickLabelLayout) => TickLabelProps; /** * Gets the corresponding props for a tick label. * Takes index and whether the tick is placed at data-min/data-max into consideration. * * @param min - data-min * @param max - data-max * @returns props for the tick label */ export declare const getTickLabelPropsForGanttAxis: (min?: number, max?: number) => TickLabelProps;