import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function findProto(this: AsyncIterableX, predicate: (value: T, index: number) => value is S, thisArg?: any): Promise; export declare function findProto(this: AsyncIterableX, predicate: (value: T, index: number) => boolean | Promise, thisArg?: any): Promise; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { find: typeof findProto; } }