import { NftItem } from "./interface"; type AllowedWidths = 256 | 384 | 640 | 750 | 828 | 1080 | 1200 | 1920 | 2048 | 3840; export declare const getNftPicture: ({ image_uri, image_url_copy }: Pick, w?: AllowedWidths, quality?: number) => string | undefined; export declare const equalNft: (a: NftItem, b: NftItem) => boolean; export {};