import type { Day, Locale } from "../_lib/types"; export interface Options { locale?: Locale; weekStartsOn?: Day; } export default function isSameWeek(dateLeft: string, dateRight: string, options?: Options): boolean;