import { BitSet } from './../objects/BitSet';
import { AbstractEnumeration } from './AbstractEnumeration';
export declare class BitSetEnumeration extends AbstractEnumeration<BitSet> {
    private current;
    private n;
    /**
     * @param n the base
     */
    constructor(n: number);
    hasMoreElements(): boolean;
    private next;
    nextElement(): BitSet;
}
