import React from 'react'; import { Token } from '@ape.swap/apeswap-lists'; import { BondsData } from '../../../../types/bonds'; export interface BuyBondProps { onDismiss?: () => void; bondAddress?: string; bondChain?: number; handlePurchasedBond?: (hash: string) => void; isProjectView?: boolean; } export interface GooSaleBondData extends Omit { address: string; type: 'goo' | 'sgoo'; principalToken: Token; discount: number; billType: 'reserve'; } declare const BuyBond: React.FC; export default BuyBond;