/** * Help you to get a Date variable form a string variable * @param {string | any} variable variable that you want to cast to Date * @returns {number} Returns a number of that Date */ declare const toDate: (variable: string | any) => number; export { toDate };