export = HandCashConnectService; declare class HandCashConnectService { static handleRequest(requestParameters: any): Promise; static handleApiError(errorResponse: any): Promise; constructor(httpRequestFactory: any); httpRequestFactory: any; getCurrentProfile(): Promise; getPublicProfilesByHandle(handles: any): Promise; getUserPermissions(): Promise; getEncryptionKeypair(encryptionPublicKey: any): Promise; signData(dataSignatureParameters: any): Promise; getUserFriends(): Promise; getSpendableBalance(currencyCode: any): Promise; getTotalBalance(): Promise; pay(paymentParameters: any): Promise; getPayment(transactionId: any): Promise; getExchangeRate(currencyCode: any): Promise; pursePay(rawTransaction: any, parents: any): Promise; purseBroadcast(rawTransaction: any): Promise; ownerNextAddress(alias: any): Promise; ownerSign(rawTransaction: any, inputParents: any, locks: any): Promise; getNftLocations(): Promise; }