import React from 'react'; import { BondsData } from '../../../../types/bonds'; import { HistoricalPrices } from '../../ProjectView'; declare const PriceChart: ({ selectedBond, historicalPrices, }: { selectedBond: BondsData; historicalPrices?: HistoricalPrices[] | null; }) => React.JSX.Element; export default PriceChart;