import { BEP20, ERC721 } from "."; declare type Sort = "asc" | "desc"; declare type Tag = "latest" | string; declare type BlockType = "blocks" | string; export declare type Pagination = { sort?: Sort; startblock?: number; endblock?: number; page?: number; offset?: number; }; export declare type GetBalanceRequest = { address: string; tag?: Tag; }; export declare type GetBalanceResponse = string; export declare type GetBalanceMultiRequest = { address: string[]; tag?: Tag; }; export declare type GetBalanceMultiResponse = Array; export declare type GetBalanceMultiResponseItem = { account: string; balance: string; }; export declare type GetTxListRequest = Pagination & { address: string; }; export declare type GetTxListResponse = Array; export declare type GetTxListResponseItem = { blockHash: string; blockNumber: string; confirmations: string; contractAddress: string; cumulativeGasUsed: string; from: string; gas: string; gasPrice: string; gasUsed: string; hash: string; input: string; isError: string; nonce: string; timeStamp: string; to: string; transactionIndex: string; txreceipt_status: string; value: string; }; export declare type GetTxListInternalRequest = GetTxListRequest; export declare type GetTxListInternalResponse = Array; export declare type GetTxListInternalResponseItem = { blockNumber: string; contractAddress: string; errCode: string; from: string; gas: string; gasUsed: string; hash: string; input: string; isError: string; timeStamp: string; to: string; traceId: string; type: string; value: string; }; export declare type GetTokenTxRequest = GetTxListRequest & { contractaddress?: string; }; export declare type GetTokenTxResponse = Array; export declare type GetTokenNFTTxRequest = Pagination & { address: string; }; export declare type GetTokenNFTTxResponse = Array; export declare type GetMinedBlocksRequest = Pagination & { address: string; blocktype?: BlockType; }; export declare type GetMinedBlocksResponse = Array; export declare type GetMinedBlocksResponseItem = { blockNumber: string; timeStamp: string; blockReward: string; }; export {};