export declare function formatLikesCount(count: any): any; /** * 格式化数值8 * @param {*} count * @param {*} digit 上限位数 * @returns */ export declare function formatCount(count: any, digit: any): any; /** * 格式化UV数 * a. < 10000 => 原样输出 * b. >= 10000 => 以万(w)为单位,保留一位小数 10000-10999 => 1w+ 11000-11999 => 1.1w+ * c. >= 10000000 => 1000w+ * @param {number} count 点赞数量 * @return {string} 格式化后的点赞数 */ export declare function formatUVCount(count: any): any; export declare function getTagData(data: any, platformConfig: any): any; export declare function orderTagListByPath(tagList: any, tagPathsStr?: string): { tag_id: string; }[]; export declare function shoudShowCoverBg(data: any): boolean; export declare function getCoverBgImg(data: any, tagData: any): Promise; export declare function getPrefixCourseTag(data: any, tagData: any): string | undefined; export declare function getProvider(data: any): any; export declare const isUrl: (description: any) => any; export declare function removeHighlightLabel(text: any): any; export declare function getDefaultImg(resourceType: any, sdpAppId: any): any;