export declare class IdGenerator {
    private existingIds;
    private hierarchyCounters;
    private currentDepth;
    constructor(existingIds?: Set<string>);
    static fromSVGString(svgString: string): IdGenerator;
    reset(): void;
    enterLevel(): void;
    exitLevel(): void;
    next(tagName: string): string;
}
