import { ISeries } from '../series'; /** * Compares to values and returns true if they are equivalent. */ export declare type ComparerFn = (a: ValueT, b: ValueT) => boolean; export declare class SeriesVariableWindowIterator implements Iterator> { iterator: Iterator<[IndexT, ValueT]>; nextValue: IteratorResult<[IndexT, ValueT]>; comparer: ComparerFn; constructor(iterable: Iterable<[IndexT, ValueT]>, comparer: ComparerFn); next(): IteratorResult>; }