export declare abstract class DateFormatter { abstract format(date: Date): string; formatTimestamp(timestamp: number): string; }