import { IterableX } from '../../iterable/iterablex';
/**
 * @ignore
 */
export declare function countProto<T>(this: IterableX<T>, fn?: (value: T) => boolean): number;
declare module '../../iterable/iterablex' {
    interface IterableX<T> {
        count: typeof countProto;
    }
}
