/**
 * 替换插值，将 `{xx}` 的地方用 `values.xx` 替换
 */
export default function formatText<V extends object>(text: string, values?: V, escapeValues?: boolean): string;
