import { IResponse, IContext } from '../../types'; import { IAccount } from '..'; export interface IGetAccountApiResponse { account: IAccount; } export type GetAccountResponse = IResponse; export declare const getAccount: ({ httpClient, }: IContext) => () => Promise>;