import ProxyInterface from '../proxy-interface'; import { AccountPageModel, PublicAccountInfoModel } from '../model/account'; declare class AccountPageProxy implements ProxyInterface { accountPage: AccountPageModel; constructor(responesData: any); getModel(): AccountPageModel; } declare class PublicAccountInfoProxy implements ProxyInterface { private publicAccountInfo; constructor(responseData: any); getModel(): PublicAccountInfoModel; } export { AccountPageProxy, PublicAccountInfoProxy }; //# sourceMappingURL=account-page-proxy.d.ts.map