import { DateTime } from "luxon"; export default class DateHelper { private readonly time; static readonly daysOfWeek: { [day: string]: string; }; static nameOfMonths: string[]; static readonly longerMonths: number[]; constructor(time: number); static verify(day: number, month: number, year: number, hour: number, minute: number): DateTime; getTimeLeft(): string; getDate(): string; }