export interface LangRef {
    locales: string[];
    messages: {
        message: {
            [section: string]: {
                [translation: string]: string;
            };
        };
    };
}
export default class langHelper {
    private static locale;
    private static reference;
    static setLocale(lang: string): void;
    static setReference(ref: LangRef[]): void;
    static getBrowserLocales(options?: {}): string[];
    static getPageLang(options?: {}): string;
    static localTranslation(stringId: string, defaultString: string): string;
}
//# sourceMappingURL=langHelper.d.ts.map