/** * 获取图片信息 * @example * ```ts * import { useImgInfo } from 'mine-h5-ui' * * const { width, height } = useImgInfo('https://图片地址') * ``` */ export declare const useImgInfo: (url: string) => Promise<{ width: number; height: number; image: HTMLImageElement; }>;