import { LeveledEffectAction } from "./LeveledEffectAction.js"; /** * @description A class that provides a built in level() method that sets the level of the effect * @extends {Actions.Effect.LeveledEffectAction} * @memberOf Actions.Effect * @see Visit {@link Actions.Effect|Effect} for an example */ declare class EffectActionWithLevel extends LeveledEffectAction { level(value: number | string): this; } export { EffectActionWithLevel };