export declare type SendReturnResult = { result: any; }; export declare type SendReturn = any; export declare type Send = (method: string, params?: any[]) => Promise; export declare type SendOld = ({ method }: { method: string; }) => Promise;