import type { Day, Locale } from "../_lib/types"; export interface Options { locale?: Locale; weekStartsOn?: Day; firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7; } export default function setWeekYear(date: string, weekYear: number, options?: Options): string;