// Locale for nn basert på nb. kun ukedager oversatt per nå.

type Locale = {
    formatDistance: Function,
    formatRelative: Function,
    localize: {
        ordinalNumber: Function,
        era: Function,
        quarter: Function,
        month: Function,
        day: Function,
        dayPeriod: Function,
    },
    formatLong: Object,
    date: Function,
    time: Function,
    dateTime: Function,
    match: {
        ordinalNumber: Function,
        era: Function,
        quarter: Function,
        month: Function,
        day: Function,
        dayPeriod: Function,
    },
    options?: {
        weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
        firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7,
    },
};

declare module.exports: Locale;
