/** * Returns the unix time in seconds of the passed date * * @param {Date} val - Date to get the unix time for */ declare function toUnix(val: Date): number; export { toUnix, toUnix as default };