import type { LanguageCode } from "@mann-conomy/tf-parser";
import type { IParticleAttribute, IParticleEffect, IParticleEffects } from "../types/particle";
export declare function getAllAttributesOrThrow(particles: IParticleEffects, language: LanguageCode): IParticleAttribute[];
export declare function evaluate(particles: IParticleEffects, particle: Partial<IParticleEffect>, strict: boolean): boolean;
export declare function find(particles: IParticleEffects, particle: Partial<IParticleEffect>, strict: boolean): IParticleAttribute;
export declare function translate(particles: IParticleEffects, particle: Partial<IParticleEffect>, language: LanguageCode, strict: boolean): IParticleAttribute;
