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