import { NehoIdAdvenced } from "../features/v2";
/**
 * Enhanced NehoID class with advanced features
 * Provides additional ID generation capabilities
 */
export declare class NehoIDV2 {
    /**
     * Quantum-entangled ID generation
     * Creates IDs that are quantum mechanically linked
     */
    static quantum: typeof NehoIdAdvenced.quantum;
    /**
     * Biometric-based ID generation
     * Generate IDs from biological characteristics
     */
    static biometric: typeof NehoIdAdvenced.biometric;
    /**
     * ML-powered predictive IDs
     * IDs that adapt based on machine learning predictions
     */
    static predictive: typeof NehoIdAdvenced.predictive;
    /**
     * Blockchain-verified IDs
     * Cryptographically secured and verifiable IDs
     */
    static blockchain: typeof NehoIdAdvenced.blockchain;
    /**
     * Neuro-cognitive IDs
     * Based on brain patterns and cognitive states
     */
    static neuroCognitive: typeof NehoIdAdvenced.neuroCognitive;
    /**
     * DNA-sequence IDs
     * Genetic algorithm-based evolution
     */
    static dnaSequence: typeof NehoIdAdvenced.dnaSequence;
    /**
     * Synaptic network IDs
     * Mimicking neural synaptic connections
     */
    static synaptic: typeof NehoIdAdvenced.synaptic;
    /**
     * Probability cloud IDs
     * Multiple probable states simultaneously
     */
    static probabilityCloud: typeof NehoIdAdvenced.probabilityCloud;
    /**
     * Metamorphic IDs
     * Context-aware shape-shifting identities
     */
    static metamorphic: typeof NehoIdAdvenced.metamorphic;
    /**
     * Wave function IDs
     * Based on wave interference patterns
     */
    static waveFunction: typeof NehoIdAdvenced.waveFunction;
    /**
     * Cross-dimensional IDs
     * Existing across multiple realities
     */
    static crossDimensional: typeof NehoIdAdvenced.crossDimensional;
    /**
     * Harmonic resonance IDs
     * Based on musical harmony and acoustics
     */
    static harmonicResonance: typeof NehoIdAdvenced.harmonicResonance;
    /**
     * ADVANCED COMBO METHODS
     * These combine multiple advanced features for enhanced uniqueness
     */
    /**
     * Ultimate ID: Combines quantum, biometric, and ML features
     */
    static ultimate(options?: {
        quantumGroup?: string;
        biometricData?: any;
        mlFeatures?: number[];
    }): string;
    /**
     * Neuro-harmonic ID: Combines brain patterns with musical harmony
     */
    static neuroHarmonic(emotionalState?: string, baseNote?: string): string;
    /**
     * ADAPTIVE ID SYSTEM
     * IDs that evolve and adapt over time
     */
    static createAdaptiveSystem(baseConfig: any): {
        generateNext: (context?: string) => string;
        getEvolutionHistory: () => string[];
        getContextMemory: () => Map<string, number>;
        reset: () => void;
    };
    /**
     * FLUID ID POOLS
     * Create pools of IDs that flow and transform
     */
    static createFluidPool(size?: number): {
        draw: () => string | null;
        replenish: (count?: number) => void;
        getTransformationHistory: (originalId: string) => string[];
        poolSize: () => number;
    };
    private static transformFluidId;
    /**
     * PREDICTIVE IDS
     * IDs that anticipate future states based on time-series data
     */
    static predictiveSequence(sequenceLength?: number): {
        baseId: string;
        sequenceIds: string[];
        materialize: (index: number) => string;
    };
    /**
     * UNIVERSAL ID TRANSLATOR
     * Translate IDs between different formats and systems
     */
    static universalTranslator(id: string, fromUniverse: string, toUniverse: string): string;
    private static calculateUniversalConstant;
    private static applyTransformation;
    /**
     * PATTERN-EMBEDDED IDs
     * IDs that contain embedded pattern recognition
     */
    static patternEmbedded(inputPattern?: string): string;
    private static hashPattern;
    private static calculatePatternComplexity;
    private static generateReference;
    /**
     * RECURSIVE IDs
     * IDs that contain nested versions of themselves
     */
    static recursive(depth?: number): string;
    /**
     * FRACTAL IDs
     * IDs with self-similar patterns at different scales
     */
    static fractal(iterations?: number, complexity?: number): string;
    /**
     * OUTCOME-BOUND IDs
     * IDs that are bound to a specific outcome
     */
    static destinyBound(outcome: string): {
        id: string;
        manifestDestiny: () => string;
        alterFate: (newOutcome: string) => string;
    };
    private static hashString;
}
//# sourceMappingURL=v2.export.d.ts.map