/** * Get the highest date from an array of dates. * * @param arr - Array of dates (Date objects, date strings, or timestamps) * @returns Highest Date or null if array is empty or contains no valid dates */ export declare function maxDate(arr: (Date | string | number | null | undefined)[]): Date | null;