import { WrI18nCatalog } from 'ngwr/i18n'; /** * Base English catalog for ngwr built-in component strings. Spread this * into your root catalog or pass it to `provideWrI18nStaticLoader`. * * @example * ```ts * import { wrEn } from 'ngwr/i18n/en'; * * provideWrI18nStaticLoader({ * en: { ...wrEn, app: { title: 'My app' } }, * }); * ``` */ declare const wrEn: WrI18nCatalog; export { wrEn };