import type { UIColor } from "../../core"; import { UIRenderingModule } from "./UIRenderingModule"; /** * Colors particles based on lifetime progression. * * Interpolates through color gradient as particles age from birth to death. */ export declare class UIRenderingColorOverLife extends UIRenderingModule { /** * @param colors - Color gradient stops from birth to death */ constructor(colors: UIColor[]); destroy(): void; }