import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; interface TOSCheckboxProps { onChange: () => void; } export function TOSCheckbox({ onChange }: TOSCheckboxProps) { const { t } = useTranslation(); return ( ); }