import React from 'react'; import { ProgressStats, ReadingStats, TrackerType, GraphData } from '../../types'; interface ItemsListProps { data: ProgressStats | ReadingStats; trackerType: TrackerType; bannerTitle?: string; layoutType?: 'stats' | 'graph'; graphData?: GraphData; } export declare const ItemsList: React.FC; export {};