import { BigNumber, Model } from '../model'; export declare type Account = Model & { networkId?: string; walletId?: string; applicationId?: string; userId?: string; address: string; hdDerivationPath?: string; publicKey?: string; privateKey?: string; balance?: BigNumber; accessAt?: string; }; export declare type Wallet = Model & { walletId?: string; applicationId?: string; userId?: string; path?: string; purpose?: number; mnemonic?: string; seed?: string; publicKey?: string; privateKey?: string; }; //# sourceMappingURL=wallet.d.ts.map