import { LineChartProps } from '../types'; import * as d3 from 'd3'; export type DrawLabelProps = { node: HTMLElement; yScale: d3.ScaleLinear; xScale: d3.ScaleLinear; } & Pick;