import { ProductImageSize } from '@jetshop/core/types'; /** * This exists to handle the deprecated `ProductImageSize` field from the API * Takes an array of sizes, and returns the url of the largest one * @param sizes Sizes field returned from API */ export declare const getLargestSize: (sizes: string | ProductImageSize[]) => any;