export type GregorianDate = {
    day: number;
    month: number;
    year: number;
};
