import { Model } from 'sequelize-typescript'; export declare class Nft extends Model { nftId: string; nftCollection: string; creator: string; owners: string; quantity: string; startReserve: string; totalReserve: string; tokenUri: string; allowMint: boolean; nonFungible: boolean; txHash: number; blockId: number; createdAt: Date; updatedAt: Date; }