import type { Day, Locale } from "../_lib/types"; export interface Options { locale?: Locale; weekStartsOn?: Day; } export default function setDay(date: string, day: number, options?: Options): string;