import { ApiClient } from '../.'; export declare class Server { private readonly client; constructor(client: ApiClient); /** * Returns details of the RPC server * * @return {Promise} */ getRpcInfo(): Promise; /** * Returns the total uptime of the server in seconds * * @return {Promise} */ uptime(): Promise; } export interface ActiveCommand { method: string; duration: number; } export interface RpcInfo { active_commands: ActiveCommand[]; logpath: string; } //# sourceMappingURL=server.d.ts.map