import createDebug from 'debug'; export interface HTMLImageElementWithLoadedMark extends HTMLImageElement { 'data-loaded-src'?: string; } /** * This implementation is based on code from [Next.js](https://github.com/vercel/next.js/blob/ed10f7ed0246fcc763194197eb9beebcbd063162/packages/next/src/client/image-component.tsx#L60-L167) * which is licensed under the MIT License. */ export declare function createLoadEvent(img: HTMLImageElementWithLoadedMark): Promise | undefined>; export { createDebug };