import React from 'react'; import { BondsData } from '../../../../types/bonds'; import { BaseBondConfig } from '@ape.swap/apeswap-lists'; export interface BondRowsWithTitleProps { chain: number; bonds: (BondsData | BaseBondConfig)[]; showHotBonds: boolean; } declare const BondRowsWithTitle: React.FC; export default BondRowsWithTitle;