import type { ScaleLinear, ScaleLogarithmic, ScaleSymLog } from 'd3-scale'; /** * @internal */ export interface ValueRightAxisProps { scale: ScaleLinear | ScaleLogarithmic | ScaleSymLog; containerWidth: number; containerHeight: number; label?: string; stroke?: string; ticks: string[]; formattedTicks: string[]; } /** * @internal */ export declare const ValueRightAxis: { (props: ValueRightAxisProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };