/// <reference types="react" />
import type { INftWithPricing } from "./NftWithPricing";
export declare type NFTDataContext = {
    nft?: INftWithPricing;
    error?: string;
    loading: boolean;
};
export declare const NFTDataContext: import("react").Context<NFTDataContext>;
