import type { IOpacityAnimation } from "./IOpacityAnimation";
import type { IValueWithRandom } from "../../IValueWithRandom";
/**
 * [[include:Options/Particles/Opacity.md]]
 * @category Options
 */
export interface IOpacity extends IValueWithRandom {
    /**
     * @deprecated use the new animation instead
     */
    anim: IOpacityAnimation;
    animation: IOpacityAnimation;
}
