import { Query, GetNep17BalancesResult, GetNep17TransfersResult, GetNep11TransfersResult, GetNep11BalancesResult } from "../Query"; import { RpcDispatcher, RpcDispatcherMixin } from "./RpcDispatcher"; export declare function TokenTrackerRpcMixin(base: TBase): { new (...args: any[]): { getNep17Transfers(accountIdentifier: string, startTime?: string, endTime?: string): Promise; getNep17Balances(accountIdentifier: string): Promise; getNep11Transfers(accountIdentifier: string, startTime?: string, endTime?: string): Promise; getNep11Balances(accountIdentifier: string): Promise; url: string; execute(query: Query, config?: import("./RpcDispatcher").RpcConfig): Promise; executeAll(batchQuery: import("..").BatchQuery, config?: import("./RpcDispatcher").RpcConfig): Promise; executeAll(batchQuery: Query[], config?: import("./RpcDispatcher").RpcConfig): Promise; }; } & TBase; declare const TokenTrackerRpcClient_base: { new (...args: any[]): { getNep17Transfers(accountIdentifier: string, startTime?: string, endTime?: string): Promise; getNep17Balances(accountIdentifier: string): Promise; getNep11Transfers(accountIdentifier: string, startTime?: string, endTime?: string): Promise; getNep11Balances(accountIdentifier: string): Promise; url: string; execute(query: Query, config?: import("./RpcDispatcher").RpcConfig): Promise; executeAll(batchQuery: import("..").BatchQuery, config?: import("./RpcDispatcher").RpcConfig): Promise; executeAll(batchQuery: Query[], config?: import("./RpcDispatcher").RpcConfig): Promise; }; } & typeof RpcDispatcher; export declare class TokenTrackerRpcClient extends TokenTrackerRpcClient_base { get [Symbol.toStringTag](): string; } export {}; //# sourceMappingURL=TokenTrackerRpcClient.d.ts.map