/** * This object represents the couple year/week. */ export declare class YearWeek { year: number; week: number; constructor(year: number, week: number); toString(): string; }