import { ReactElement } from 'react'; import 'chartjs-adapter-luxon'; import { QuotationHistory } from '@fridaygame/client'; export type QuotationHistoryGraphTheme = 'light' | 'dark'; export interface QuotationHistoryGraphProps { quotationHistory?: QuotationHistory; theme?: QuotationHistoryGraphTheme; } export type DataPoint = { x: number; y: number; }; export declare function QuotationHistoryGraph({ quotationHistory, theme, }: QuotationHistoryGraphProps): ReactElement;