/** * Copyright (c) 2021 Burst Apps Team * Copyright (c) 2022 Signum Network */ import { ChainService } from '../../../service/chainService'; import { UnsignedTransaction } from '../../../typings/unsignedTransaction'; import { SetAccountInfoArgs } from '../../../typings/args/setAccountInfoArgs'; /** * Use with {@link ApiComposer} and belongs to {@link AccountApi}. * * See details at {@link AccountApi.setAccountInfo} * * @category factories */ export declare const setAccountInfo: (service: ChainService) => (args: SetAccountInfoArgs) => Promise;