/// import 'react-calendar-heatmap/dist/styles.css'; interface Catch { caughtAtGmt: number; } export interface ICalendarProps { catches: Catch[]; year: string; } export declare const Calendar: ({ catches, year }: ICalendarProps) => JSX.Element; export {};