import { ChartDataTypes } from '../../../mixed-line-bar-chart/interfaces'; import { ChartScale, NumericChartScale } from './scales'; interface InlineStartLabelsProps { axis?: 'x' | 'y'; plotWidth: number; plotHeight: number; maxLabelsWidth?: number; scale: ChartScale | NumericChartScale; ticks: readonly ChartDataTypes[]; tickFormatter?: (value: number) => string; title?: string; ariaRoleDescription?: string; } declare const _default: typeof InlineStartLabels; export default _default; declare function InlineStartLabels({ axis, plotWidth, plotHeight, maxLabelsWidth, scale, ticks, tickFormatter, title, ariaRoleDescription }: InlineStartLabelsProps): JSX.Element;