/** * Bypasses the RELEASED_LANGUAGES gate for every test in the enclosing * describe block. Call this at the top of any i18n describe block that asserts * Spanish (or other unreleased-language) string correctness before that * language is officially released. * * The global jest.mock for releasedLanguages is registered in * jestWebSetupConfig.js, so no per-file jest.mock() call is needed. * * @example * describe("Component i18n", () => { * bypassReleasedLocaleGate(); * it("shows Spanish", () => { ... }); * }); */ export declare function bypassReleasedLocaleGate(): void;