import { DateDisplay } from "./interfaces"; export interface NavigationProps { isHebrew?: boolean; month: string; year: number; onClick: (month: string, year: number, format?: "jewish" | "gregorian") => void; dateDisplay?: DateDisplay; gregorianDate?: Date; gregorianLabel?: string; } export declare const getGregorianYears: (year?: number) => number[]; export declare const Navigation: React.FC;