import { TranslatedText } from "@mediahubmx/schema"; declare type TFunction = (key: string, defaultValue?: string) => string | TranslatedText; /** * Utility function to translate strings within an object or array. * The `t` function is called when a string starting with `triggerPrefix` * is found. * ``` * { * some: "Normal value", * another: "i18n:Default translation value", * anArray: [ * { * anObjectInsideArray: "i18n:This text will also be translated" * } * ] * } * ``` */ export declare const translateDeep: (object: any, t: TFunction, path?: string, triggerPrefix?: string) => any; export {};