import { ThrottlerRunner } from './throttler-runner.js'; /** * Throttles task execution and only executes * the latest scheduled task, on the next animation frame. */ declare class AnimationTaskRunner extends ThrottlerRunner { constructor(); } export { AnimationTaskRunner };