import { Model } from 'sequelize-typescript'; import { Address } from './address'; import { SwapChain } from './swapChain'; export declare class SwapMultiple extends Model { senderId: number; sender: Address; fromId: number; from: Address; recipientId: number; recipient: Address; amount: string; tokenSymbol: string; transactionNumber: string; hashTx: string; chainToId: number; chainTo: SwapChain; chainFromId: number; chainFrom: SwapChain; v: string; r: string; s: string; hashRedeem: string; redeemed: boolean; }