import React from 'react'; import { ChainId } from '@ape.swap/apeswap-lists'; interface BondRowProps { bondAddress: string; bondChain: ChainId; contractType: string; tag?: string; bondSoldOut?: boolean; discount?: string; vestingTermString: string; vestingCliffString?: string; } declare const BondRow: React.FC; export default BondRow;