export declare class ImageHelper { static checkIsVertical: (url: string) => Promise; static computeRatio: (src: string) => Promise; static getRatio: (metadata: ImageSize) => number; } export type ImageSize = { width: number; height: number; };