import { default as locales } from '../../locales'; type TranslationKey = keyof typeof locales.en; declare const useTranslation: () => { t: (key: TranslationKey) => string; }; export default useTranslation;