export type TranslationKey = keyof typeof trads; declare const trads: { en: () => Promise; fr: () => Promise; 'pt-BR': () => Promise; tr: () => Promise; ru: () => Promise; 'zh-Hans': () => Promise; pl: () => Promise; }; export default trads;