export type MonthAndYear = {
    month: string;
    year: string;
};
export declare function parseDate(datestring: string): MonthAndYear;
