import * as d3 from 'd3'; import { ChartItem, Scales } from './types'; declare type Orient = 'top' | 'bottom' | 'left' | 'right'; interface Data { axis: d3.Axis; orient: Orient; value: string; text: string; color: string; } interface Params extends Data { axis: d3.Axis; orient: Orient; scales: Scales; } export default class AxisAnnotation implements ChartItem { #private; constructor(params: Params); appendTo: (parent: Element) => void; resize: () => void; update: (data: Partial>) => void; draw: () => void; } export {}; //# sourceMappingURL=AxisAnnotation.d.ts.map