import { Timestamp } from './models/timestamp.model'; export declare class TimestampDate { private tsHandler; private strHandler; constructor(); getCurrentTimestamp(): Timestamp; getCurrentDate(): Date; timestampToDate(timestamp: Timestamp): Date; dateToTimestamp(date: Date): Timestamp; parseTimestampToDate(data: T): R; parseDateToTimestamp(data: T): R; parseStringToDate(data: T): R; parseDateToString(data: T): R; }