/**
 * Lightweight trailing-edge throttle for high-frequency DOM events.
 * Drops intermediate calls, only executes at most once per `intervalMs`.
 */
export declare function throttle<T extends (...args: any[]) => void>(fn: T, intervalMs: number): T;
