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