import React from "react"; interface MonthGridProps { selectedMonths: number[]; onSelectMonth: (month: number) => void; } declare const MonthGrid: ({ selectedMonths, onSelectMonth }: MonthGridProps) => React.JSX.Element; export { MonthGrid, type MonthGridProps };