export function throttle<T>(
    pred: StatefulPredicate<T>,
    src: Iterable<T>
): IterableIterator<T>;