import type { TranslationKeys } from "../../i18n/translationKeys"; import { LocaleType } from "../../interfaces/types"; export type UseTranslationsReturn = { locale: L; t: (k: TranslationKeys, option?: Record) => string; }; export declare function useTranslations(): UseTranslationsReturn;