import { Synchronized } from '../../common'; import { ENSNode } from '../../ens'; import { AccountTypes, AccountStates, AccountStores } from '../constants'; import { AccountSettings } from './account-settings'; export declare class Account extends Synchronized { static fromPlain(plain: Partial): Account; address: string; type: AccountTypes; state: AccountStates; store: AccountStores; ensNode?: ENSNode; settings?: AccountSettings; createdAt: Date; updatedAt: Date; }