import { FilterAsyncFn, FilterFn } from "./filter"; import { AsyncIterableLike } from "../async-like"; export declare function some(iterable: Iterable, callbackFn: FilterFn, thisValue?: This, parent?: Parent): boolean; export declare function asyncSome(iterable: AsyncIterableLike, callbackFn: FilterAsyncFn, thisValue?: This, parent?: Parent): Promise;