import { AccountUser } from './model/AccountUser'; import { AccountUserEntity } from './model/AccountUserEntity'; import Pageable from '../common/model/Pageable'; import { AccountUserResponse } from './model/AccountUserResponse'; import { AccountUserProfileEntity } from './model/AccountUserProfileEntity'; import { AccountUserProfile } from './model/AccountUserProfile'; export declare class AccountUserConverter { static convert: (entity: AccountUserEntity) => AccountUser; static fromPageableAccountUsersEntity: (entity: AccountUserResponse) => Pageable; static fromAccountUserProfileEntity: (entity: AccountUserProfileEntity) => AccountUserProfile; }