import { PointsDisplay } from '../../../../types/timeseries-props.js'; /** * Checks the value of pointsDisplay and returns a boolean whether the points * should be displayed or not. * * @param pointsDisplay - given pointsDisplay prop * @param chartWidth - given chart width * @param numOfDataPoints - total amount of dataPoints * @returns */ export declare function shouldDisplayPoints(pointsDisplay: PointsDisplay, chartWidth: number, numOfDataPoints: number): boolean | number;