/** * * @param {number} weekStartsOn * the index of the first day of the week (0-Sunday,1-Monday, etc) * */ type WeekStartNumber = 0 | 1 | 2 | 3 | 4 | 5 | 6; declare const getDayofWeek: ({ weekStartsOn }: { weekStartsOn: WeekStartNumber; }) => string[]; export default getDayofWeek;