import { GetNodesArguments, GetNodesResponse, GetStatsResponse, GetStatsArguments, VerifyNodeArguments, VerifyNodeResponse, GetCurrentNodeArguments, TrackStatsArguments } from './types'; export declare const getNodes: ({ filter, limit, page, env, }: GetNodesArguments) => Promise; export declare const getCurrentNode: ({ authToken, env, }: GetCurrentNodeArguments) => Promise; export declare const getStats: ({ accountId, env, publicKey, }: GetStatsArguments) => Promise; export declare const verifyNode: ({ registrationCode, token, env, }: VerifyNodeArguments) => Promise; export declare const trackStats: ({ accountId, onMessage, onError, }: TrackStatsArguments) => Promise<() => void>;