import { Model } from 'sequelize-typescript'; import { Address } from './address'; import { Balance } from './balance'; import { Block } from './block'; import { CoinContractAddress } from './coinContractAddress'; import { Nft } from './nft'; import { History_1d } from './priceHistory/history1d'; import { History_1h } from './priceHistory/history1h'; import { Stake } from './stake'; import { StakeNft } from './stakeNft'; import { Tx } from './tx'; export declare class Coin extends Model { symbol: string; title: string; volume: string; reserve: string; crr: number; delegated: string; priceBase: string; limitVolume: string; minVolume: string; priceDelegate: string; creatorId: number; creator: Address; txId: number; initTx: Tx; blockId: number; block: Block; avatar: string; contractAddress: string; burn: string; burnBase: string; stakes: Stake[]; history1d: History_1d[]; history1h: History_1h[]; balances: Balance[]; stakeNfts: StakeNft[]; coin: CoinContractAddress[]; nfts: Nft[]; }