type $$ComponentProps = { currentView: "calendar" | "year" | "month"; focusedMonth: number; focusedYear: number; startYear: number; endYear: number; }; declare const Header: import("svelte").Component<$$ComponentProps, {}, "focusedMonth" | "focusedYear" | "currentView">; type Header = ReturnType; export default Header;