type CallbackType = (now: number) => void; /** * Calls requestAnimationFrame with a timeout delay * @param {Function} callback cb function * @param {number} timeout timeout in ms * @returns {void} void */ export declare function setRafTimeout(callback: CallbackType, timeout?: number): void; export {};