import { IterableX } from '../../iterable/iterablex.js';
import { FindOptions } from '../../iterable/findoptions.js';
/**
 * @ignore
 */
export declare function someProto<T>(this: IterableX<T>, options: FindOptions<T>): boolean;
declare module '../../iterable/iterablex' {
    interface IterableX<T> {
        some: typeof someProto;
    }
}
