export type DateResult = string | null;
export type DateRangeResult = {
    start: string | null;
    end: string | null;
};
