/**
 * 删除干扰的换行符
 * @param s 源字符串
 */
export declare const clearLinkBreak: (s: string) => string;
export declare const getIcon: (isCol: any, fid: any, colTId?: any) => string;
export declare const getBigIcon: (id: any) => string;
/**
 * 解析bit数据
 * @param bit bit
 */
export declare const parseBit: (bit: string | number) => string;
/**
 * 获取扩展名
 * @param name 文件名或url地址
 */
export declare const getExtension: (name: string) => string;
/**
 * 处理正文 ,反转义，再解码unicode
 * @param text
 */
export declare const handleContent: (text?: string) => string;
