import { StaffbaseLocale } from '../types/i18n/StaffbaseLocale'; /** * Reads the browser's preferred language and normalizes it to a supported * Staffbase locale. * * Walks `navigator.languages` (most preferred first), falling back to * `navigator.language`, and returns the first entry that maps to a supported * locale. Returns null when there is no navigator or none of the preferences * are supported, so callers can fall back to their injected default. * @returns {StaffbaseLocale | null} The preferred supported locale, or null. */ export declare const getBrowserLanguage: () => StaffbaseLocale | null; //# sourceMappingURL=getBrowserLanguage.d.ts.map