/**
 * Defines the kind of contextual sources for node particles
 */
export declare enum NodeParticleContextualSources {
    /** None */
    None = 0,
    /** Position */
    Position = 1,
    /** Direction */
    Direction = 2,
    /** Age */
    Age = 3,
    /** Lifetime */
    Lifetime = 4,
    /** Color */
    Color = 5,
    /** ScaledDirection */
    ScaledDirection = 6,
    /** Scale */
    Scale = 7,
    /** AgeGradient */
    AgeGradient = 8,
    /** Angle */
    Angle = 9,
    /** SpriteCellIndex */
    SpriteCellIndex = 16,
    /** SpriteCellStart */
    SpriteCellStart = 17,
    /** SpriteCellEnd */
    SpriteCellEnd = 18
}
