export class ParticleAttribute {
    /**
     *
     * @param {string} name
     * @param {ParticleAttributeType} attributeType
     * @param {ParticleDataType} dataType
     * @deprecated use {@link AttributeSpec} instead
     * @constructor
     */
    constructor(name: string, attributeType: ParticleAttributeType, dataType: ParticleDataType);
    /**
     *
     * @type {string}
     */
    name: string;
    /**
     *
     * @type {ParticleAttributeType}
     */
    type: ParticleAttributeType;
    /**
     *
     * @type {ParticleDataType}
     */
    dataType: ParticleDataType;
}
//# sourceMappingURL=ParticleAttribute.d.ts.map