export default abstract class SRCalendar { abstract readonly monthList: any; abstract readonly weekDays: any; toShortDate(d: Date): string; }