import { Day } from "./";
export type Month = {
    id: number;
    title: string;
    days: Day[];
};
