export { MainResourceComputed as MainResource }; declare const MainResourceComputed: typeof MainResource & { request: (dependencies: { URL: LH.Artifacts["URL"]; devtoolsLog: LH.DevtoolsLog; }, context: LH.Artifacts.ComputedContext) => Promise; }; /** * @fileoverview This artifact identifies the main resource on the page. Current solution assumes * that the main resource is the first non-redirected one. */ declare class MainResource { /** * @param {{URL: LH.Artifacts['URL'], devtoolsLog: LH.DevtoolsLog}} data * @param {LH.Artifacts.ComputedContext} context * @return {Promise} */ static compute_(data: { URL: LH.Artifacts["URL"]; devtoolsLog: LH.DevtoolsLog; }, context: LH.Artifacts.ComputedContext): Promise; } //# sourceMappingURL=main-resource.d.ts.map