import AccountNode from './../type/node/account'; import BasicAuthCredentials from './../http/type/basic-auth-credentials'; import Operation, { OperationInput } from './../operation'; interface Input extends OperationInput { readonly credentials: BasicAuthCredentials; } declare class FetchAccountOperation extends Operation { protected performInternal(): Promise; private fetchAccount; private fetchAccountId; private getUsername; private getPassword; private getCredentials; } export default FetchAccountOperation;