import { Pagination } from '../common';
export interface NftItemType {
    id: string;
    owner: string;
    tokenURI: string;
}
export declare class NftQueryClient {
    private _axios;
    constructor(baseUrl: string);
    queryBalanceOf(ownerAddress: string): Promise<string>;
    queryTokenOfOwnerByIndex(ownerAddress: string, index: string): Promise<string>;
    queryNftItem(nftId: string): Promise<NftItemType>;
    queryNftItemAll(paginationKey?: string): Promise<{
        dataList: NftItemType[];
        pagination: Pagination;
    }>;
}
