import React from 'react'; export interface TyCalendarNavigationProps extends Omit, 'onChange'> { /** Display month (1-12) */ displayMonth?: number; /** Display year */ displayYear?: number; /** Locale for month name formatting */ locale?: string; /** Navigation size */ size?: 'sm' | 'md' | 'lg'; /** Width of navigation */ width?: string; /** Earliest reachable month (ISO "YYYY-MM-DD") — navigation clamps here */ min?: string; /** Latest reachable month (ISO "YYYY-MM-DD") — navigation clamps here */ max?: string; /** Navigation change event handler */ onChange?: (event: CustomEvent) => void; } export interface NavigationChangeDetail { month: number; year: number; } export declare const TyCalendarNavigation: React.ForwardRefExoticComponent>; //# sourceMappingURL=TyCalendarNavigation.d.ts.map