/** * Cross-environment requestAnimationFrame / cancelAnimationFrame. * * Wraps the globals so test suites that replace * `globalThis.requestAnimationFrame` still take effect. Falls back * to setTimeout(cb, 16) in environments without a real compositor. */ export declare function raf(cb: FrameRequestCallback): number; export declare function caf(id: number): void;