import { FindResult } from '../types/_internal'; import { MaybePromise } from 'tsdef'; /** finds the first item in the `iterable` where the `predicate` returns `true` */ export declare const find: (iterable: Iterable, predicate: (value: T) => boolean) => FindResult; /** * finds the first item in the `iterable` where the `predicate` returns `true`. * runs one at a time */ export declare const findAsync: (iterable: AsyncIterable | Iterable>, predicate: (value: T) => MaybePromise) => Promise; //# sourceMappingURL=Iterable.d.ts.map