/** * @method convertUnixDate * transform UNIX Timestamp into Date format * @param UTC */ export declare const convertUnixDate: (UTC: string) => { UTC: string; date: string; time: string; dateTime: Date; };