import { AbstractEnumeration } from './AbstractEnumeration';
/**
 * Adapted into an Enumeration from code by nl.dvberkel.
 */
export declare class DyckWordEnumeration extends AbstractEnumeration<string> {
    private currentState;
    private readonly symbols;
    private readonly target;
    private readonly replacement;
    constructor(nbOfPairs: number);
    private next;
    private initialStateOfLength;
    private initialWordOfLength;
    hasMoreElements(): boolean;
    nextElement(): string;
}
