import { SWRConfiguration } from "swr";
import { BlockchainNFTDataType } from "../fetcher/AuctionInfoTypes";
export declare type useBlockchainNFTType = {
    error?: string;
    data?: BlockchainNFTDataType;
};
export declare function useBlockchainNFT(contractAddress?: string, tokenId?: string, swrConfiguration?: SWRConfiguration): useBlockchainNFTType;
