import { Selection } from 'd3'; import Axis from '../Base/axis'; declare type SvgEl = Selection; interface DrawAxOptions { translate: string; } /** * Given an svg element and an axis instance, draws * an axis on the svg with respect to the axis scale and preferred orientation * @param svg * @param axis * @returns */ export declare function drawAxis(svg: SvgEl, axis: Axis, opts?: DrawAxOptions): Selection; export declare function drawAxisLabels(sel: SvgEl, axis: Axis): SvgEl; export {};