import { BLEND_MODES } from 'pixi.js'; import { Particle } from '../Particle'; import { BehaviorOrder, IEmitterBehavior } from './Behaviors'; import { BehaviorEditorConfig } from './editor/Types'; /** * A Blend Mode behavior that applies a blend mode value to the particle at initialization. * * Example config: * ```javascript * { * type: 'blendMode', * config: { * blendMode: 'multiply', * } * } * ``` */ export declare class BlendModeBehavior implements IEmitterBehavior { static type: string; static editorConfig: BehaviorEditorConfig; order: BehaviorOrder; private value; constructor(config: { blendMode: BLEND_MODES; }); initParticles(first: Particle): void; }