/**
 * 根据属性数组，
 * 过滤对象的特定属性值
 * @param obj
 * @param arr
 * @returns
 */
export declare function filterObj(obj: any, arr: string[]): {};
