/** * @param {LH.Gatherer.ProtocolSession} session * @param {LH.Config.Settings} settings * @return {Promise} */ export function emulate(session: LH.Gatherer.ProtocolSession, settings: LH.Config.Settings): Promise; /** * Sets the throttling options specified in config settings, clearing existing network throttling if * throttlingMethod is not `devtools` (but not CPU throttling, suspected requirement of WPT-compat). * * @param {LH.Gatherer.ProtocolSession} session * @param {LH.Config.Settings} settings * @return {Promise} */ export function throttle(session: LH.Gatherer.ProtocolSession, settings: LH.Config.Settings): Promise; /** * @param {LH.Gatherer.ProtocolSession} session * @return {Promise} */ export function clearThrottling(session: LH.Gatherer.ProtocolSession): Promise; /** * @param {LH.Gatherer.ProtocolSession} session * @param {Required} throttlingSettings * @return {Promise} */ export function enableNetworkThrottling(session: LH.Gatherer.ProtocolSession, throttlingSettings: Required): Promise; /** * @param {LH.Gatherer.ProtocolSession} session * @return {Promise} */ export function clearNetworkThrottling(session: LH.Gatherer.ProtocolSession): Promise; /** * @param {LH.Gatherer.ProtocolSession} session * @param {Required} throttlingSettings * @return {Promise} */ export function enableCPUThrottling(session: LH.Gatherer.ProtocolSession, throttlingSettings: Required): Promise; /** * @param {LH.Gatherer.ProtocolSession} session * @return {Promise} */ export function clearCPUThrottling(session: LH.Gatherer.ProtocolSession): Promise; //# sourceMappingURL=emulation.d.ts.map