import { ILocale } from './types'; declare const translations: { en: { close: string; expand: string; minimize: string; fullscreen: string; exitFullscreen: string; }; no: { close: string; expand: string; minimize: string; fullscreen: string; exitFullscreen: string; }; }; export declare function useTranslations(locale?: ILocale): typeof translations.en; export {};