/**
 * 读取类 json 文件
 * 支持 json / jsonc / json5 三种格式
 * @param filePath - 类 json 文件
 * @returns json 文件内容
 */
export declare function readJsonLike(filePath: string): Promise<any>;
