import { Model } from 'sequelize-typescript'; import { Stake } from './stake'; export declare class Undelegation extends Model { undelegateAmount: string; stakeId: number; completeAt: Date; stake: Stake; }