import React from "react"; import { Colors } from "./colors"; import { YearMonth } from "./YearMonth"; interface Props { focused: YearMonth; setFocused(focused: YearMonth): void; colors: Colors; } export declare function MonthPicker({ focused, setFocused, colors }: Props): React.JSX.Element; export {};