export declare class CountIterable implements Iterable<any> {
    [Symbol.iterator](): Iterator<any>;
}
