import type { UIRange, UIRangeConfig } from "../miscellaneous/miscellaneous"; import { UIBehaviorModule } from "./UIBehaviorModule"; /** * Reduces particle velocity over time. * * Applies exponential decay to velocity. Damping of 0 means no effect, 1 means instant stop. */ export declare class UIBehaviorVelocityDamping extends UIBehaviorModule<{ builtin: "Matrix4"; }> { private dampingInternal; /** * @param damping - Damping coefficient range (0-1). Accepts number, tuple, or range object */ constructor(damping: UIRangeConfig); /** Damping coefficient range (0-1) */ get damping(): UIRange; /** Damping coefficient range (0-1) */ set damping(value: UIRangeConfig); }