/** * Returns the unix time of a date. * Optionally specify the unit of time, milliseconds or seconds. * * [Aracna Reference](https://aracna.dariosechi.it/core/utils/date) */ export declare function getDateUnixTime(date: string | number | Date, uot?: 'ms' | 's'): number;