import React from 'react'; export interface BuyBondProps { onDismiss?: () => void; bondAddress?: string; bondChain?: number; handlePurchasedBond?: (hash: string) => void; isProjectView?: boolean; } declare const BuyBond: React.FC; export default BuyBond;