import { Timestamp } from 'src/models/timestamp.model'; export declare class TimestampHandler { getCurrentTimestamp(): Timestamp; getCurrentDate(): Date; timestampToDate(timestamp: Timestamp): Date; dateToTimestamp(date: Date): Timestamp; parseTimestampToDate(data: T): R; parseDateToTimestamp(data: T): R; private checkTimestampPropertyValue; private checkDateTimestampPropertyValue; }