import React from 'react'; export interface HistoricalPrices { timestamp: string; open: number; close: number; } export interface ProjectViewProps { bondAddress: string; bondChain: string; historicalPrices?: HistoricalPrices[] | null; } declare const ProjectView: React.FC; export default ProjectView;