export declare class CompressIterator<T> implements IterableIterator<T> {
    protected iterator: Iterator<T>;
    protected selectors: Iterator<any>;
    constructor(iterator: Iterator<T>, selectors: Iterator<any>);
    [Symbol.iterator](): IterableIterator<T>;
    next(...args: any[]): IteratorResult<T>;
}
export default CompressIterator;
//# sourceMappingURL=CompressIterator.d.ts.map