import { Timeseries } from '../../core/types/timeseries.js'; /** * Detects if there are any misaligned data points in the timeseries. * Returns true if there's any misaligned point, false otherwise * * @param timeseries - */ export declare const detectMisalignedDatapoints: (timeseries: Timeseries[]) => boolean; /** * Returns true if the series collection is jagged, meaning that the * amount of data points of each series is different. * * @param timeseries - */ export declare const seriesAreJagged: (timeseries: Timeseries[]) => boolean;