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