/**
 * Original work Copyright (c) 2019 Burst Apps Team
 */
import { ChainService } from '../../../service/chainService';
import { Account } from '../../../typings/account';
import { GetAccountArgs } from '../../../typings/args/getAccountArgs';
/**
 * Use with {@link ApiComposer} and belongs to {@link AccountApi}.
 *
 * See details at {@link AccountApi.getAccount}
*
* @category factories
*/
export declare const getAccount: (service: ChainService) => (args: GetAccountArgs) => Promise<Account>;
