import { Account } from './model/Account'; import { AccountEntity, AccountResponse, AccountsResponse } from './model/AccountsEntity'; import Pageable from '../common/model/Pageable'; import { AccountPrices } from './model/AccountPrices'; import { AccountPricesEntity } from './model/AccountPricesEntity'; import { AccountApiClient } from './model/AccountApiClient'; export declare class AccountConverter { static fromAccountsEntity: (entity: AccountEntity[]) => Account[]; static fromPageableAccountsEntity: (entity: AccountsResponse) => Pageable; static fromAccountEntity: (entity: AccountResponse) => Account; static fromAccount: (account: AccountEntity) => Account; static fromAccountPricesEntity: (entity: AccountPricesEntity) => AccountPrices; static fromAccountApiClientEntity: (entity: AccountApiClient) => AccountApiClient; }