import { Json } from './types'; type Command = { method: string; params: Json | Array; }; type ConnectionSettings = { url: string; authHeader: string; timeout?: number; }; export default function (cmd: Command, settings: ConnectionSettings): Promise; export {};