import type { Callback } from "../Types";
export declare class AnimationFrame {
    private IDs;
    execute(callback: Callback): () => void;
    abortAll(): void;
    cancel(ID: ReturnType<typeof requestAnimationFrame>): void;
}
