/// import { Language } from '../../api/types'; import { SolidDeep } from '@bast1oncz/objects/types/operations'; export interface TranslationsContextValue { shownLanguageCode: string; editedLanguageCode: string; languages: SolidDeep[]; setShownLanguageCode?: (shownLanguageCode: string) => void; setEditedLanguageCode?: (editedLanguageCode: string) => void; } declare const context: import("react").Context; export declare const useTranslationsContext: () => TranslationsContextValue; export default context;