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