type TranslateResult = string; export type TranslateMethod = (key: string, replace?: Record) => TranslateResult; /** * Shared structure between frontend and backend */ export interface I18n { t(key: string, replace?: Record): TranslateResult; } export {}; //# sourceMappingURL=I18nInterface.d.ts.map