/**
 * \r \n to <br/>
 */
declare function crlfToBr(v: string): string;
/**
 * 替换字符串里面的回车换行符
 * @deprecated 请使用 @see {@link crlfToBr}.
 */
declare function filterCRLF(v: string): string;

export { crlfToBr, filterCRLF };
