/** * Loads an image and wraps the result in a promise. * * @param src the image URL * @returns a promise */ declare const loadImg: (src: string) => Promise; export default loadImg;