export declare function find(source: AsyncIterable, predicate: (value: T, index: number) => value is S, thisArg?: any): Promise; export declare function find(source: AsyncIterable, predicate: (value: T, index: number) => boolean | Promise, thisArg?: any): Promise;