import type {IntoInterator} from './types'; type PredicateFunction = (item: T) => boolean; export default function every( target: IntoInterator, predicate: PredicateFunction ): boolean;