import { Model } from 'sequelize-typescript'; import { Address } from './address'; import { Tx } from './tx'; export declare class Check extends Model { txId: number; tx: Tx; issuerId: number; issuer: Address; recipientId: number; recipient: Address; coin: string; amount: string; check: string; proof: string; due_block: string; nonce: string; }