import type { IParticleAttribute } from "../types/particle";
export default class ParticleAttribute {
    private readonly id;
    private readonly name;
    constructor(id: number, name: string);
    getId(): number;
    getName(): string;
    json(): IParticleAttribute;
    stringify(): string;
    toString(): string;
    copy(): ParticleAttribute;
}
