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