/** * This function takes an svg image and applies auto-cropping on it. * This, apparently, also runs [svgo](https://github.com/svg/svgo) optimizations. * * It works via an api call to https://autocrop.cncf.io/. * * That's not an ideal way to huge amounts of SVGs, but it works. * * @returns {*} {Promise} The path of the cropped file. */ export declare function cropSvgImage(imagePath: string): Promise;