import { Context } from "./context.js"; /** * Wrap a translation function to call a function before translating any value. * * This can be used with libraries that use signals to update translated values when the locale has been changed. */ export declare function wrapSignalT(t: Context.T, useSignal: () => void): Context.T;