import * as React from 'react'; import type { Lang } from "../../utils/configure.js"; import type { StringWithSuggest } from "../../utils/types.js"; export interface LangOptions { lang: StringWithSuggest; fallbackLang: StringWithSuggest; } export declare const defaultLangOptions: LangOptions; export declare const LangContext: React.Context; export declare function useLang(): LangOptions;