/** * Help you to know if a variable (string) is a valid timestamp * @param {string | any} variable variable that you want to know if is a valid timestamp * @returns {boolean} if it's a valid timestamp returns true otherwise return false */ declare const isTimestamp: (variable: string | any) => boolean; export { isTimestamp };