import { ReserveAuctionPartialFragment } from '../graph-queries/zora-graph-types';
import { BlockchainNFTDataType, CurrencyLookupType } from './AuctionInfoTypes';
export interface BlockchainResponse {
    token_id: string;
    address: string;
    contract_name: string;
    contract_symbol: string;
    owner: string;
    uri: string;
    zoraMetadataUri?: string;
}
export declare const transformBlockchainResponse: (data: BlockchainResponse, auctionData?: ReserveAuctionPartialFragment | undefined, currencyData?: CurrencyLookupType | undefined) => BlockchainNFTDataType;
