/** * Register phrase formatter. * * @param {string} name Name of formatter. * @param {Function} formatterFn Function which will be applied on phrase propositions. It will transform them if it's possible. */ export declare function register(name: string, formatterFn: Function): void; /** * Get all registered previously formatters. * * @returns {Array} */ export declare function getAll(): Function[]; export { register as registerPhraseFormatter, getAll as getPhraseFormatters };