/** * The `DateAgoIntl` class provides labels for the `DateAgoDirective`. * * @public */ export declare class DateAgoIntl { private _todayLabel; private _yesterdayLabel; private _daysAgoLabel; private _lastWeekLabel; private _weeksAgoLabel; private _lastMonthLabel; private _monthsAgoLabel; private _lastYearLabel; private _yearsAgoLabel; /** * Constructs a new instance of the `DateAgoIntl` class. * * @public */ constructor(); get todayLabel(): string; set todayLabel(value: string); get yesterdayLabel(): string; set yesterdayLabel(value: string); get daysAgoLabel(): string; set daysAgoLabel(value: string); get lastWeekLabel(): string; set lastWeekLabel(value: string); get weeksAgoLabel(): string; set weeksAgoLabel(value: string); get lastMonthLabel(): string; set lastMonthLabel(value: string); get monthsAgoLabel(): string; set monthsAgoLabel(value: string); get lastYearLabel(): string; set lastYearLabel(value: string); get yearsAgoLabel(): string; set yearsAgoLabel(value: string); formatDaysAgoLabel(days: number): string; formatWeeksAgoLabel(weeks: number): string; formatMonthsAgoLabel(months: number): string; formatYearsAgoLabel(years: number): string; } //# sourceMappingURL=DateAgoIntl.d.ts.map