import ProxyInterface from '../proxy-interface'; import { AccountEmailInscribe, AccountProfileModel } from '../model/account'; declare class AccountProfileProxy implements ProxyInterface { accountProfileModel: AccountProfileModel; constructor(responseData: any); getModel(): AccountProfileModel; } declare class AccountEmailInscribeProxy implements ProxyInterface { emailInscribe: AccountEmailInscribe; constructor(responseData: any); getModel(): AccountEmailInscribe; } export { AccountProfileProxy, AccountEmailInscribeProxy }; //# sourceMappingURL=account-profile-proxy.d.ts.map