import { ObjectId } from 'mongodb'; import { IWallet } from '../Interface'; export declare class Wallet implements IWallet { _id: ObjectId; name: string; address: string; network: string; providerCredential: string; walletCredential: string; createdDate: Date; updatedDate: Date; }