/** * It help you to know if a variable is a Date (Date class) * @param {Date | any} variable variable that you want to know if it is a Date * @returns {boolean} If it is a Date it will returns a true otherwise return false */ declare const isDate: (variable: Date | any) => boolean; export { isDate };