import { Path } from '@sensinum/strapi-utils'; import type { EN } from './en'; export type TranslationPath = Path; declare const trads: { en: () => Promise; fr: () => Promise; ca: () => Promise; }; export declare const getTradId: (msg: string) => string; export declare const getTrad: (msg: string, defaultMessage?: string) => { id: string; defaultMessage: string; }; export default trads;