import { ComponentTheme } from './style.interfaces'; export interface OutputShape { month: number; year: number; } export interface MonthPickerProps { /** default value : new Date() ; i.e. current time */ time?: OutputShape | Date; colors: ComponentTheme; onDateUpdate: ({}: OutputShape) => void; }