import { Model } from 'sequelize-typescript'; import { Address } from './address'; import { Coin } from './coin'; import { Redelegation } from './redelegation'; import { Undelegation } from './undelegation'; import { Validator } from './validator'; export declare class Stake extends Model { coinId: number; amount: string; unbondAmount: string; addressId: number; validatorId: number; validator: Validator; coin: Coin; address: Address; redelegations: Redelegation[]; undelegations: Undelegation[]; }