import React from "react"; import type { InputDatum, NumericalFields, ValueOf, YAxisProps } from "../../types"; export declare const YAxis: , YK extends keyof NumericalFields>({ xScale, yScale, yTicksNormalized, axisSide, labelPosition, labelOffset, labelColor, lineWidth, lineColor, font, formatYLabel, linePathEffect, chartBounds, }: YAxisProps) => React.JSX.Element[]; export declare const YAxisDefaults: { lineColor: string; lineWidth: number; tickCount: number; labelOffset: number; axisSide: "left"; labelPosition: "outset"; formatYLabel: (label: ValueOf) => string; labelColor: string; yKeys: never[]; domain: null; };