import React from 'react'; type SortableKeys = 'bonus' | 'arr' | 'terms' | 'tokensRemaining'; type SortDirection = 'asc' | 'desc'; export interface SortOptions { key: SortableKeys; direction: SortDirection; } declare const Bonds: () => React.JSX.Element; export default Bonds;