import { TextKeys, Texts } from "../../types.js"; declare function set(key: TextKeys, value: string): void; declare function get(): Texts; declare function initTexts(textsFromBe: Texts): void; declare function updateTexts(textsFromBe: Texts): void; export { set, get, initTexts, updateTexts }; declare const texts: { set: typeof set; get: typeof get; updateTexts: typeof updateTexts; }; export default texts;