/** * Convert a value to a Date object if possible, handles Date objects and strings * * @param {Date|string} val - Value to convert */ declare function convertToDate(val: Date | string | number): Date | null; export { convertToDate, convertToDate as default };