/** * Creates a timer module implementation for the sandbox * * This module provides an implementation of the Web API timer functions: * setTimeout, setInterval, clearTimeout, and clearInterval. * * @returns A CageModule that implements timer functions in the sandbox * * @example * ```typescript * const cage = await FaradayCage.create(); * * await cage.runCode(` * setTimeout(() => console.log("Hello after 1s"), 1000); * * const intervalId = setInterval(() => console.log("Every 500ms"), 500); * setTimeout(() => clearInterval(intervalId), 2000); * `, [timers(), console()]); * ``` */ declare const _default: () => import("./_mod_authoring").CageModule; export default _default;