export declare const EMPTY_GUID = "00000000-0000-0000-0000-000000000000"; export declare function groupBy(list: T[], getKey: (item: T) => K): Record; export declare function toDate(strDate: string): Date | null; export declare function toFormattedDate(strDate: string): string | null; export declare function addDaysToDate(dt: Date, d: number): Date; export declare function getDayIndex(dt: Date): number; export declare function isSameDate(sDate: Date, eDate: Date): boolean;