import Node from './../src/type/node'; import BasicAuthCredentials from './../src/http/type/basic-auth-credentials'; import Operation, { OperationInput } from './../src/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;