/**
 * 获取 image-size 库
 * image-size 是一个用于获取图片尺寸的第三方库
 * @returns image-size 库
 * @example
 * ```ts
 * const sizeOf = getImageSize();
 * const dimensions = sizeOf('test.png'); // { width, height, type }
 * ```
 */
export declare function getImageSize(): any;
