import { Axis, BaseAxisOptions } from './axis.js';
import { AxisOrientation } from './axisOrientation.js';
export declare class YAxis extends Axis {
    constructor(group: d3.Selection<SVGGElement, unknown, null, unknown>, scale: any, spanScale: any, options: Partial<BaseAxisOptions>);
    translateAxis(position: any): string;
    translateTickLabels(orientation: AxisOrientation, angle: number): void;
}
