/**
 * Creates a new object with all the properties where the callback returns
 * true.
 */
declare function filterValues(obj: any, callback: any, thisObj?: any): {};
export default filterValues;
