type DatepickerSupportedLocale = "en-gb" | "nb-no" | "sv-se";
declare const enUS: {
    dateOptions: {
        locale: DatepickerSupportedLocale;
        date: Intl.DateTimeFormatOptions;
        time: Intl.DateTimeFormatOptions;
    };
    collapse: string;
    expand: string;
    closeMessage: string;
    closeModal: string;
    back: string;
    next: string;
    prev: string;
    previous: string;
    goTo: string;
    page: string;
    last: string;
    first: string;
    of: string;
    required: string;
    optional: string;
    row: string;
    search: string;
    mainNav: string;
    skipToMain: string;
    closeMenu: string;
    loading: string;
};
export type BifrostLocale = typeof enUS;
export default enUS;
