/** * @heyirisai/docx-editor-i18n/he * * Hebrew (`he`) — direct locale subpath for per-locale code-splitting. * * ```ts * // Static — bundler ships only this locale's strings * import he from '@heyirisai/docx-editor-i18n/he'; * * // Dynamic — splits into its own chunk, loaded on demand * const he = (await import('@heyirisai/docx-editor-i18n/he')).default; * ``` * * For multi-locale apps, prefer the per-locale subpaths over importing * `locales` from the package root — `locales` pulls every locale into * the bundle. * * @packageDocumentation * @public */ import { PartialLocaleStrings } from './index.mjs'; /** * Hebrew (`he`) locale strings. Community-maintained; null leaves fall back to English. * * Identical content to the named `he` export from the package root; * this subpath just lets bundlers code-split it. * * @public */ declare const he: PartialLocaleStrings; export { he as default, he };