import React from 'react'; import type { AxisCoordinates, DataValue } from '../types'; /** * Props for the Line chart component */ type LineProps = { /** Array of data points to be plotted on the line chart */ data: DataValue[]; /** Maximum value for the Y-axis scale */ maxValue: number; /** Minimum value for the Y-axis scale */ minValue: number; /** Array of labels for the X-axis points */ labels: string[]; /** Coordinates defining the chart's boundaries and scale */ coordinates: AxisCoordinates; /** Color for the line */ color?: string; /** Test ID for the line */ testID?: string; }; declare const Line: ({ data, maxValue, minValue, labels, coordinates, color, testID, }: LineProps) => React.JSX.Element | null; export default Line;