export { LCPImageRecordComputed as LCPImageRecord }; declare const LCPImageRecordComputed: typeof LCPImageRecord & { request: (dependencies: { trace: LH.Trace; devtoolsLog: LH.DevtoolsLog; }, context: LH.Artifacts.ComputedContext) => Promise; }; /** * @fileoverview Match the LCP event with the paint event to get the request of the image actually painted. * This could differ from the `ImageElement` associated with the nodeId if e.g. the LCP * was a pseudo-element associated with a node containing a smaller background-image. */ declare class LCPImageRecord { /** * @param {{trace: LH.Trace, devtoolsLog: LH.DevtoolsLog}} data * @param {LH.Artifacts.ComputedContext} context * @return {Promise} */ static compute_(data: { trace: LH.Trace; devtoolsLog: LH.DevtoolsLog; }, context: LH.Artifacts.ComputedContext): Promise; } //# sourceMappingURL=lcp-image-record.d.ts.map