/** * Internal hook for translating Rebase UI strings. * * Uses the `rebase_core` i18next namespace that is initialised by * `RebaseI18nProvider`. Do NOT use `react-i18next` directly in internal * components — always go through this hook so the namespace is consistent. * * @example * const { t } = useTranslation(); * * * @internal */ export declare function useTranslation(): { t: (key: string, vars?: Record) => string; i18n: import("i18next").i18n; };