import { FormatParams } from 'bloko/common/numberFormatter'; export declare const format: (trlValue: string, formatValues: Record) => string; export declare const formatToReactComponent: (trlValue: string, formatValues: Record) => JSX.Element; export declare const formatNewLine: (trlValue: string) => JSX.Element; export declare const formatFromTo: ({ from, to }: { from?: number | undefined; to?: number | undefined; }, { trlFrom, trlTo, trlFromTo }: { trlFrom: string; trlTo: string; trlFromTo: string; }, formatterParams?: FormatParams) => string | null;