export function dropWhile<T>(
    pred: Predicate<T>,
    src: Iterable<T>
): IterableIterator<T>;