import { ReadHashSet } from './read-hash-set';
import { ReadCursor } from './read-cursor';
export declare class ReadCountedHashSet extends ReadHashSet {
    constructor(cursor: ReadCursor);
    count(): number;
}
