import { Model } from 'sequelize-typescript'; export declare class SoftwareUpgradeProposal extends Model { id: string; title: string; description: string; from: string; proposer: string; name: string; time: string; blockId: number; txHash: string; createdAt: Date; updatedAt: Date; }