"use client"; import { Trans as BaseTrans, useTranslation } from "react-i18next"; import type { TxKeyPath } from "../i18n/types"; export const Trans = (props: { i18nKey: TxKeyPath; defaults?: string; values?: Record; children?: React.ReactNode; components?: Record | React.ReactElement[]; }) => { const { t } = useTranslation(); return ; };